/plugin-engine/src/main/java/com/sirius/utils/encrypt/BlowfishEncryptor.java

https://gitlab.com/philip-kissme/plugin-framework · Java · 113 lines · 64 code · 17 blank · 32 comment · 2 complexity · f0ffa7065cf5252e78a2376e41eb1b1e MD5 · raw file

  1. /* Copyright © 2010 www.myctu.cn. All rights reserved. */
  2. /**
  3. * project : oasp
  4. * user created : pippo
  5. * date created : 2010-7-23 - 上午09:58:57
  6. */
  7. package com.sirius.utils.encrypt;
  8. import java.security.Provider;
  9. import javax.crypto.Cipher;
  10. import javax.crypto.spec.SecretKeySpec;
  11. import org.apache.commons.codec.DecoderException;
  12. import org.apache.commons.codec.binary.Hex;
  13. import org.apache.commons.lang3.Validate;
  14. import org.bouncycastle.jce.provider.BouncyCastleProvider;
  15. /**
  16. * @since 2010-7-23
  17. * @author pippo
  18. */
  19. public class BlowfishEncryptor implements Encryptor {
  20. // private static Logger logger = LoggerFactory.getLogger(BlowfishEncryptor.class);
  21. private static String algorithm = "Blowfish/ECB/ZeroBytePadding";
  22. Provider security_provider = new BouncyCastleProvider();
  23. @Override
  24. public byte[] encrypt(Object key, byte[] target) throws EncryptException {
  25. try {
  26. Validate.notNull(target, "the encrypt target can not be null");
  27. Validate.notNull(key, "the encrypt key can not be null");
  28. // Validate.isTrue((key.toString().length() % 2) == 0, "the encrypt key size must be even number");
  29. String _key = ((String) key).length() % 2 == 0 ? (String) key : ((String) key) + "0";
  30. SecretKeySpec secretKey = new SecretKeySpec(_key.getBytes(), algorithm);
  31. Cipher cipher = Cipher.getInstance(algorithm, security_provider);
  32. // cipher.init(Cipher.ENCRYPT_MODE, secretKey, new IvParameterSpec(ivBytes));
  33. // Cipher cipher = Cipher.getInstance(algorithm);
  34. cipher.init(Cipher.ENCRYPT_MODE, secretKey);
  35. byte[] result = cipher.doFinal(target);
  36. return result;
  37. } catch (Exception e) {
  38. throw new EncryptException(e);
  39. }
  40. }
  41. @Override
  42. public String encryptHex(Object key, String data) throws EncryptException {
  43. byte[] result = this.encrypt(key, data.getBytes());
  44. return new String(Hex.encodeHex(result));
  45. }
  46. @Override
  47. public byte[] decrypt(Object key, byte[] data) throws EncryptException {
  48. try {
  49. Validate.notNull(data, "the encrypt target can not be null");
  50. Validate.notNull(key, "the encrypt key can not be null");
  51. // Validate.isTrue((key.toString().length() % 2) == 0, "the encrypt key size must be even number");
  52. String _key = ((String) key).length() % 2 == 0 ? (String) key : ((String) key) + "0";
  53. SecretKeySpec secretKey = new SecretKeySpec(_key.getBytes(), algorithm);
  54. Cipher cipher = Cipher.getInstance(algorithm, security_provider);
  55. cipher.init(Cipher.DECRYPT_MODE, secretKey);
  56. byte[] result = cipher.doFinal(data);
  57. return result;
  58. } catch (Exception e) {
  59. throw new EncryptException(e);
  60. }
  61. }
  62. @Override
  63. public String decryptHex(Object key, String data) throws EncryptException {
  64. try {
  65. byte[] result = this.decrypt(key, Hex.decodeHex(data.toCharArray()));
  66. return new String(result);
  67. } catch (DecoderException e) {
  68. throw new EncryptException(e);
  69. }
  70. }
  71. // public static void main(String[] args) throws Exception {
  72. // System.out.println((byte) 0);
  73. //
  74. // BlowfishEncryptor encryptor = new BlowfishEncryptor();
  75. //
  76. // String target = "1234567812345678344dfsdsrerwerwer123";
  77. // String key = "12345678";
  78. //
  79. // String encrypt = encryptor.encryptHex(key, target);
  80. // System.out.println(encrypt);
  81. // System.out.println("083c5c143ed83d51083c5c143ed83d519d1493f3bd7700a962373abf12bf3f402d4cc2bb470b216c".equals(encrypt));
  82. // System.out.println(encryptor.decryptHex(key, encrypt));
  83. //
  84. // // System.out.println(encryptor.decrypt("78dd92637fb4b2d278dd92637fb4b2d2520034769b162b4ed8b016a6c3dd8bed38b788e7a91b9690", key));
  85. // }
  86. @Override
  87. public String encryptBase64(Object key, String data) throws EncryptException {
  88. // TODO Auto-generated method stub
  89. return null;
  90. }
  91. @Override
  92. public String decryptBase64(Object key, String raw) throws EncryptException {
  93. // TODO Auto-generated method stub
  94. return null;
  95. }
  96. }