/crypto/cipher/src/test/groovy/org/apache/shiro/crypto/cipher/BlowfishCipherServiceTest.groovy

https://github.com/apache/shiro · Groovy · 86 lines · 49 code · 14 blank · 23 comment · 2 complexity · 562a4bb3f62688993aa01afa8920748b MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.apache.shiro.crypto.cipher
  20. import org.apache.shiro.lang.codec.CodecSupport
  21. import org.apache.shiro.lang.util.ByteSource
  22. import org.apache.shiro.util.ByteUtils
  23. import org.junit.Test
  24. import static org.junit.Assert.assertTrue
  25. /**
  26. * Test cases for the {@link org.apache.shiro.crypto.cipher.BlowfishCipherService} class.
  27. *
  28. * @since 1.0
  29. */
  30. public class BlowfishCipherServiceTest {
  31. private static final String[] PLAINTEXTS = [
  32. "Hello, this is a test.",
  33. "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
  34. ];
  35. @Test
  36. public void testBlockOperations() {
  37. BlowfishCipherService blowfish = new BlowfishCipherService();
  38. byte[] key = blowfish.generateNewKey().getEncoded();
  39. for (String plain : PLAINTEXTS) {
  40. byte[] plaintext = CodecSupport.toBytes(plain);
  41. ByteSource ciphertext = blowfish.encrypt(plaintext, key);
  42. ByteSourceBroker broker = blowfish.decrypt(ciphertext.getBytes(), key);
  43. byte[] decrypted = broker.getClonedBytes()
  44. try {
  45. assertTrue(Arrays.equals(plaintext, decrypted));
  46. } finally {
  47. ByteUtils.wipe(decrypted);
  48. }
  49. }
  50. }
  51. @Test
  52. public void testStreamingOperations() {
  53. BlowfishCipherService cipher = new BlowfishCipherService();
  54. byte[] key = cipher.generateNewKey().getEncoded();
  55. for (String plain : PLAINTEXTS) {
  56. byte[] plaintext = CodecSupport.toBytes(plain);
  57. InputStream plainIn = new ByteArrayInputStream(plaintext);
  58. ByteArrayOutputStream cipherOut = new ByteArrayOutputStream();
  59. cipher.encrypt(plainIn, cipherOut, key);
  60. byte[] ciphertext = cipherOut.toByteArray();
  61. InputStream cipherIn = new ByteArrayInputStream(ciphertext);
  62. ByteArrayOutputStream plainOut = new ByteArrayOutputStream();
  63. cipher.decrypt(cipherIn, plainOut, key);
  64. byte[] decrypted = plainOut.toByteArray();
  65. try {
  66. assertTrue(Arrays.equals(plaintext, decrypted));
  67. } finally {
  68. ByteUtils.wipe(decrypted);
  69. }
  70. }
  71. }
  72. }