/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
- package com.change_vision.astah.extension.plugin.mindmapplanner.util;
- import java.security.InvalidKeyException;
- import java.security.NoSuchAlgorithmException;
- import javax.crypto.BadPaddingException;
- import javax.crypto.IllegalBlockSizeException;
- import javax.crypto.NoSuchPaddingException;
- public class PasswordUtils {
- private static final String ALGORITHM = "Blowfish";
-
- public static byte[] encrypt(String key, String text) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
- javax.crypto.spec.SecretKeySpec sksSpec = new javax.crypto.spec.SecretKeySpec(key.getBytes(), ALGORITHM);
- javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance(ALGORITHM);
- cipher.init(javax.crypto.Cipher.ENCRYPT_MODE, sksSpec);
- byte[] encrypted = cipher.doFinal(text.getBytes());
- return encrypted;
- }
- public static String decrypt(String key, byte[] encrypted) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
- javax.crypto.spec.SecretKeySpec sksSpec = new javax.crypto.spec.SecretKeySpec(key.getBytes(), ALGORITHM);
- javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance(ALGORITHM);
- cipher.init(javax.crypto.Cipher.DECRYPT_MODE, sksSpec);
- byte[] decrypted = cipher.doFinal(encrypted);
- return new String(decrypted);
- }
-
- public static void main(String[] args) throws Throwable {
- byte[] encrypt = PasswordUtils.encrypt("MINDMAP_planner", "developer");
- String es = new String(encrypt, "iso-8859-1");
- String decrypt = PasswordUtils.decrypt("MINDMAP_planner", es.getBytes("iso-8859-1"));
- System.out.println(decrypt);
- }
- }