JAVA 可逆加密演算法的簡單實現
阿新 • • 發佈:2019-02-17
很多加密包都提供複雜的加密演算法,比如MD5,這些演算法有的是不可逆的。
有時候我們需要可逆演算法,將敏感資料加密後放在資料庫或配置檔案中,在需要時再再還原。
這裡介紹一種非常簡單的java實現可逆加密演算法。
演算法使用一個預定義的種子(seed)來對加密內容進行異或執行,解密只用再進行一次異或運算就還原了。
程式碼如下:
seed任意寫都可以。
package cn.exam.signup.service.pay.util; import java.math.BigInteger; import java.util.Arrays; public class EncrUtil { private static final int RADIX = 16; private static final String SEED = "0933910847463829232312312"; public static final String encrypt(String password) { if (password == null) return ""; if (password.length() == 0) return ""; BigInteger bi_passwd = new BigInteger(password.getBytes()); BigInteger bi_r0 = new BigInteger(SEED); BigInteger bi_r1 = bi_r0.xor(bi_passwd); return bi_r1.toString(RADIX); } public static final String decrypt(String encrypted) { if (encrypted == null) return ""; if (encrypted.length() == 0) return ""; BigInteger bi_confuse = new BigInteger(SEED); try { BigInteger bi_r1 = new BigInteger(encrypted, RADIX); BigInteger bi_r0 = bi_r1.xor(bi_confuse); return new String(bi_r0.toByteArray()); } catch (Exception e) { return ""; } } public static void main(String args[]){ System.out.println(Arrays.toString(args)); if(args==null || args.length!=2) return; if("-e".equals(args[0])){ System.out.println(args[1]+" encrypt password is "+encrypt(args[1])); }else if("-d".equals(args[0])){ System.out.println(args[1]+" decrypt password is "+decrypt(args[1])); }else{ System.out.println("args -e:encrypt"); System.out.println("args -d:decrypt"); } } }
執行以上程式碼:
[-e, 1234567890]
1234567890 encrypt password is 313233376455276898a5
[-d, 313233376455276898a5]
313233376455276898a5 decrypt password is 1234567890