/crypto/cipher/src/main/java/org/apache/shiro/crypto/cipher/BlowfishCipherService.java

https://github.com/apache/shiro · Java · 92 lines · 9 code · 3 blank · 80 comment · 0 complexity · 4c228fff81a68d96982c459cda4ffa55 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. /**
  21. * {@code CipherService} using the {@code Blowfish} cipher algorithm for all encryption, decryption, and key operations.
  22. * <p/>
  23. * The Blowfish algorithm can support key sizes between {@code 32} and {@code 448} bits<b>*</b>, inclusive. However,
  24. * modern cryptanalysis techniques render keys of 80 bits or less mostly worthless - use {@code 128} or more whenever
  25. * possible.
  26. * <p/>
  27. * Note that this class retains the parent class's default {@link OperationMode#CBC CBC} mode of operation
  28. * instead of the typical JDK default of {@link OperationMode#ECB ECB}. {@code ECB} should not be used in
  29. * security-sensitive environments because {@code ECB} does not allow for initialization vectors, which are
  30. * considered necessary for strong encryption. See the {@link DefaultBlockCipherService parent class}'s JavaDoc and the
  31. * {@link JcaCipherService JcaCipherService} JavaDoc for more on why the JDK default should not be used and is not
  32. * used in this implementation.
  33. * <p/>
  34. * <b>*</b> Generating and using Blowfish key sizes greater than 128 require installation of the
  35. * <a href="http://java.sun.com/javase/downloads/index.jsp">Java Cryptography Extension (JCE) Unlimited Strength
  36. * Jurisdiction Policy files</a>.
  37. *
  38. * @since 1.0
  39. */
  40. public class BlowfishCipherService extends DefaultBlockCipherService {
  41. private static final String ALGORITHM_NAME = "Blowfish";
  42. private static final int BLOCK_SIZE = 64;
  43. /**
  44. * Creates a new {@link CipherService} instance using the {@code Blowfish} cipher algorithm with the following
  45. * important cipher default attributes:
  46. * <table>
  47. * <tr>
  48. * <th>Attribute</th>
  49. * <th>Value</th>
  50. * </tr>
  51. * <tr>
  52. * <td>{@link #setKeySize keySize}</td>
  53. * <td>{@code 128} bits</td>
  54. * </tr>
  55. * <tr>
  56. * <td>{@link #setBlockSize blockSize}</td>
  57. * <td>{@code 64} bits (required for {@code Blowfish})</td>
  58. * </tr>
  59. * <tr>
  60. * <td>{@link #setMode mode}</td>
  61. * <td>{@link OperationMode#CBC CBC}<b>*</b></td>
  62. * </tr>
  63. * <tr>
  64. * <td>{@link #setPaddingScheme paddingScheme}</td>
  65. * <td>{@link PaddingScheme#PKCS5 PKCS5}</td>
  66. * </tr>
  67. * <tr>
  68. * <td>{@link #setInitializationVectorSize(int) initializationVectorSize}</td>
  69. * <td>{@code 64} bits</td>
  70. * </tr>
  71. * <tr>
  72. * <td>{@link #setGenerateInitializationVectors(boolean) generateInitializationVectors}</td>
  73. * <td>{@code true}<b>**</b></td>
  74. * </tr>
  75. * </table>
  76. * <p/>
  77. * <b>*</b> The {@link OperationMode#CBC CBC} operation mode is used instead of the JDK default {@code ECB} to
  78. * ensure strong encryption. {@code ECB} should not be used in security-sensitive environments - see the
  79. * {@link DefaultBlockCipherService DefaultBlockCipherService} class JavaDoc's &quot;Operation Mode&quot; section
  80. * for more.
  81. * <p/>
  82. * <b>**</b>In conjunction with the default {@code CBC} operation mode, initialization vectors are generated by
  83. * default to ensure strong encryption. See the {@link JcaCipherService JcaCipherService} class JavaDoc for more.
  84. */
  85. public BlowfishCipherService() {
  86. super(ALGORITHM_NAME);
  87. setInitializationVectorSize(BLOCK_SIZE); //like most block ciphers, the IV size is the same as the block size
  88. }
  89. }