/jp/gkyy/common/util/Encryptor.java

https://github.com/gkyy20/CommonLibrary · Java · 38 lines · 35 code · 3 blank · 0 comment · 0 complexity · bc90bd3854ef26899c70fb544a31f452 MD5 · raw file

  1. package jp.gkyy.common.util;
  2. public class Encryptor {
  3. public static byte[] encrypt(String key, String text)
  4. throws javax.crypto.IllegalBlockSizeException,
  5. java.security.InvalidKeyException,
  6. java.security.NoSuchAlgorithmException,
  7. java.io.UnsupportedEncodingException,
  8. javax.crypto.BadPaddingException,
  9. javax.crypto.NoSuchPaddingException
  10. {
  11. javax.crypto.spec.SecretKeySpec sksSpec =
  12. new javax.crypto.spec.SecretKeySpec(key.getBytes(), "Blowfish");
  13. javax.crypto.Cipher cipher =
  14. javax.crypto.Cipher.getInstance("Blowfish");
  15. cipher.init(javax.crypto.Cipher.ENCRYPT_MODE, sksSpec);
  16. byte[] encrypted = cipher.doFinal(text.getBytes());
  17. return encrypted;
  18. }
  19. public static String decrypt(String key, byte[] encrypted)
  20. throws javax.crypto.IllegalBlockSizeException,
  21. java.security.InvalidKeyException,
  22. java.security.NoSuchAlgorithmException,
  23. java.io.UnsupportedEncodingException,
  24. javax.crypto.BadPaddingException,
  25. javax.crypto.NoSuchPaddingException
  26. {
  27. javax.crypto.spec.SecretKeySpec sksSpec =
  28. new javax.crypto.spec.SecretKeySpec(key.getBytes(), "Blowfish");
  29. javax.crypto.Cipher cipher =
  30. javax.crypto.Cipher.getInstance("Blowfish");
  31. cipher.init(javax.crypto.Cipher.DECRYPT_MODE, sksSpec);
  32. byte[] decrypted = cipher.doFinal(encrypted);
  33. return new String(decrypted);
  34. }
  35. }