/src/main/java/com/change_vision/astah/extension/plugin/mindmapplanner/util/PasswordUtils.java

https://bitbucket.org/kompiro/jira-mindmap-planner-for-astah · Java · 35 lines · 29 code · 6 blank · 0 comment · 0 complexity · 629a4eb756a401e07dddc444708a7a10 MD5 · raw file

  1. package com.change_vision.astah.extension.plugin.mindmapplanner.util;
  2. import java.security.InvalidKeyException;
  3. import java.security.NoSuchAlgorithmException;
  4. import javax.crypto.BadPaddingException;
  5. import javax.crypto.IllegalBlockSizeException;
  6. import javax.crypto.NoSuchPaddingException;
  7. public class PasswordUtils {
  8. private static final String ALGORITHM = "Blowfish";
  9. public static byte[] encrypt(String key, String text) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
  10. javax.crypto.spec.SecretKeySpec sksSpec = new javax.crypto.spec.SecretKeySpec(key.getBytes(), ALGORITHM);
  11. javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance(ALGORITHM);
  12. cipher.init(javax.crypto.Cipher.ENCRYPT_MODE, sksSpec);
  13. byte[] encrypted = cipher.doFinal(text.getBytes());
  14. return encrypted;
  15. }
  16. public static String decrypt(String key, byte[] encrypted) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
  17. javax.crypto.spec.SecretKeySpec sksSpec = new javax.crypto.spec.SecretKeySpec(key.getBytes(), ALGORITHM);
  18. javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance(ALGORITHM);
  19. cipher.init(javax.crypto.Cipher.DECRYPT_MODE, sksSpec);
  20. byte[] decrypted = cipher.doFinal(encrypted);
  21. return new String(decrypted);
  22. }
  23. public static void main(String[] args) throws Throwable {
  24. byte[] encrypt = PasswordUtils.encrypt("MINDMAP_planner", "developer");
  25. String es = new String(encrypt, "iso-8859-1");
  26. String decrypt = PasswordUtils.decrypt("MINDMAP_planner", es.getBytes("iso-8859-1"));
  27. System.out.println(decrypt);
  28. }
  29. }