/src/net/vvakame/twithubbridge/helper/EncryptUtil.java

https://github.com/vvakame/TwitHubBridge · Java · 43 lines · 34 code · 9 blank · 0 comment · 0 complexity · f29fab8500f14510c47f233982e4fc71 MD5 · raw file

  1. package net.vvakame.twithubbridge.helper;
  2. import java.io.UnsupportedEncodingException;
  3. import java.security.InvalidKeyException;
  4. import java.security.NoSuchAlgorithmException;
  5. import javax.crypto.BadPaddingException;
  6. import javax.crypto.Cipher;
  7. import javax.crypto.IllegalBlockSizeException;
  8. import javax.crypto.NoSuchPaddingException;
  9. import javax.crypto.spec.SecretKeySpec;
  10. import org.apache.geronimo.mail.util.Hex;
  11. public class EncryptUtil {
  12. private static final String ALGORITHM = "Blowfish";
  13. public static String encrypt(String key, String text)
  14. throws IllegalBlockSizeException, InvalidKeyException,
  15. NoSuchAlgorithmException, UnsupportedEncodingException,
  16. BadPaddingException, NoSuchPaddingException {
  17. SecretKeySpec sksSpec = new SecretKeySpec(key.getBytes(), ALGORITHM);
  18. Cipher cipher = Cipher.getInstance(ALGORITHM);
  19. cipher.init(Cipher.ENCRYPT_MODE, sksSpec);
  20. byte[] encrypted = cipher.doFinal(text.getBytes());
  21. return new String(Hex.encode(encrypted));
  22. }
  23. public static String decrypt(String key, String encryptedStr)
  24. throws IllegalBlockSizeException, InvalidKeyException,
  25. NoSuchAlgorithmException, UnsupportedEncodingException,
  26. BadPaddingException, NoSuchPaddingException {
  27. byte[] encrypted = Hex.decode(encryptedStr);
  28. SecretKeySpec sksSpec = new SecretKeySpec(key.getBytes(), ALGORITHM);
  29. Cipher cipher = Cipher.getInstance(ALGORITHM);
  30. cipher.init(Cipher.DECRYPT_MODE, sksSpec);
  31. byte[] decrypted = cipher.doFinal(encrypted);
  32. return new String(decrypted);
  33. }
  34. }