/blowfish/src/main/java/com/liwei/blowfish/BlowfishEncrypter.java

http://liweistudy.googlecode.com/ · Java · 127 lines · 68 code · 23 blank · 36 comment · 4 complexity · 3c07e6a30983be4d54e84296c01566b3 MD5 · raw file

  1. package com.liwei.blowfish;
  2. import javax.crypto.Cipher;
  3. import javax.crypto.spec.IvParameterSpec;
  4. import javax.crypto.spec.SecretKeySpec;
  5. import org.apache.commons.codec.binary.Base64;
  6. import org.apache.commons.codec.digest.DigestUtils;
  7. import org.apache.commons.lang.StringUtils;
  8. import org.apache.log4j.Logger;
  9. /**
  10. * ??Blowfish?????????
  11. *
  12. */
  13. public class BlowfishEncrypter {
  14. /** logger */
  15. private static final Logger logger = Logger.getLogger(BlowfishEncrypter.class);
  16. // ----- ?? -----
  17. private static String CIPHER_NAME = "Blowfish/CFB8/NoPadding";
  18. private static String KEY_SPEC_NAME = "Blowfish";
  19. private static String CHARSET = "GBK";
  20. private String CIPHER_KEY = "Ay16quwz5ic-=TAOBAO=-4z5kHgYuy1X";
  21. private SecretKeySpec secretKeySpec;
  22. private IvParameterSpec ivParameterSpec;
  23. private static final ThreadLocal encrypter_pool = new ThreadLocal();
  24. // ----- ???? -----
  25. private Cipher cipher;
  26. /**
  27. * ????????
  28. */
  29. private BlowfishEncrypter() {
  30. this("Ay16quwz5ic-=TAOBAO=-4z5kHgYuy1X");
  31. }
  32. /**
  33. * ?????
  34. */
  35. public BlowfishEncrypter(String CIPHER_KEY) {
  36. this.CIPHER_KEY = CIPHER_KEY;
  37. secretKeySpec = new SecretKeySpec(CIPHER_KEY.getBytes(), KEY_SPEC_NAME);
  38. ivParameterSpec = new IvParameterSpec((DigestUtils.md5Hex(CIPHER_KEY).substring(0, 8))
  39. .getBytes());
  40. try {
  41. cipher = Cipher.getInstance(CIPHER_NAME);
  42. } catch (Exception e) {
  43. logger.error("[BlowfishEncrypter]", e);
  44. }
  45. }
  46. /**
  47. * ??????????????
  48. *
  49. * <p>
  50. * ???????????????ThreadLocal????????????
  51. * </p>
  52. *
  53. * @return
  54. */
  55. public static BlowfishEncrypter getEncrypter() {
  56. BlowfishEncrypter encrypter = (BlowfishEncrypter) encrypter_pool.get();
  57. if (encrypter == null) {
  58. encrypter = new BlowfishEncrypter();
  59. encrypter_pool.set(encrypter);
  60. }
  61. return encrypter;
  62. }
  63. /**
  64. * ????????
  65. *
  66. * @param str
  67. *
  68. * @return ??????????????????null
  69. */
  70. public String encrypt(String str) {
  71. if (StringUtils.isNotBlank(str)) {
  72. try {
  73. cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec, ivParameterSpec);
  74. byte[] clearBytes = str.getBytes(CHARSET);
  75. byte[] cryptoBytes = cipher.doFinal(clearBytes);
  76. return new String(Base64.encodeBase64(cryptoBytes, false), CHARSET);
  77. } catch (Exception e) {
  78. logger.error("???????: ", e);
  79. }
  80. }
  81. return null;
  82. }
  83. /**
  84. * ????????
  85. *
  86. * @param str
  87. *
  88. * @return ??????????????????null
  89. */
  90. public String decrypt(String str) {
  91. if (StringUtils.isNotBlank(str)) {
  92. try {
  93. byte[] cryptoBase64Bytes = str.getBytes(CHARSET);
  94. byte[] cryptoBytes = Base64.decodeBase64(cryptoBase64Bytes);
  95. cipher.init(Cipher.DECRYPT_MODE, secretKeySpec, ivParameterSpec);
  96. byte[] clearBytes = cipher.doFinal(cryptoBytes);
  97. return new String(clearBytes, CHARSET);
  98. } catch (Exception e) {
  99. logger.warn("???????: ", e);
  100. }
  101. }
  102. return null;
  103. }
  104. }