/IPF Library/log/IPFCipherUtils.java

https://bitbucket.org/totartfm/ipftools-trac · Java · 74 lines · 42 code · 16 blank · 16 comment · 0 complexity · ef0d54b094e7a92019d7689ca59541ea MD5 · raw file

  1. package jp.go.ipa.ipf.birtviewer.util;
  2. import javax.crypto.Cipher;
  3. import javax.crypto.spec.SecretKeySpec;
  4. import org.apache.log4j.Logger;
  5. public class IPFCipherUtils {
  6. /** 通常のロガー */
  7. protected static Logger log = Logger.getLogger(IPFCipherUtils.class);
  8. /** 暗号化キー (16文字以内) */
  9. private static final String CIPHER_KEY = "IPA_IPF";
  10. /**
  11. * 文字列を暗号化する。
  12. *
  13. * @param text 文字列
  14. * @return 文字列を暗号化したもの。
  15. * @throws Exception
  16. */
  17. public static String encrypt(String text) {
  18. String cryptStr = null;
  19. try {
  20. log.debug("暗号化(平文)=" + text);
  21. byte clearText[] = text.getBytes();
  22. byte[] key = CIPHER_KEY.getBytes(); // 暗号化キー
  23. SecretKeySpec sksSpec = new SecretKeySpec(key, "Blowfish");
  24. Cipher cipher = Cipher.getInstance("Blowfish");
  25. cipher.init(Cipher.ENCRYPT_MODE, sksSpec);
  26. byte cryptText[] = cipher.doFinal(clearText);
  27. cryptStr = IPFByteUtils.toHexString(cryptText);
  28. log.debug("暗号化(暗文)=" + cryptStr);
  29. } catch(Exception e) {
  30. log.error("暗号化失敗", e);
  31. }
  32. return cryptStr;
  33. }
  34. /**
  35. * 文字列を複号化する。
  36. *
  37. * @param text 文字列
  38. * @return 文字列を複号化したもの。
  39. * @throws Exception
  40. */
  41. public static String decrypt(String text) {
  42. String decryptStr = null;
  43. try {
  44. log.debug("複号化(暗文)=" + text);
  45. byte decryptText[] = IPFByteUtils.byteStrToByte(text);
  46. byte[] key = CIPHER_KEY.getBytes(); // 複号化キー
  47. SecretKeySpec sksSpec = new SecretKeySpec(key, "Blowfish");
  48. Cipher cipher = Cipher.getInstance("Blowfish");
  49. cipher.init(Cipher.DECRYPT_MODE, sksSpec);
  50. byte clearText[] = cipher.doFinal(decryptText);
  51. decryptStr = new String(clearText);
  52. log.debug("複号化(平文)=" + decryptStr);
  53. } catch(Exception e) {
  54. log.error("複号化失敗", e);
  55. }
  56. return decryptStr;
  57. }
  58. }