Azerbaijan Development Group(AzDG)开发的可逆加密算法 AzDGCrypt 对用户资料进行加密。如提供正确的私有密匙,可通过本加密算法对数据进行加密及解密。
格式化代码:http://tool.oschina.net/codeformat/java
import java.io.IOException;
import java.security.MessageDigest;
public class Azdg {
public static void main(String[] args) {
Azdg azdg = new Azdg();
System.out.println(System.currentTimeMillis() / 1000);
String clearText = "no=sh0105&time=12319399372223`112r3r223"; //明文
String cipherText = ""; //密文
String cleanText = ""; //解密后的
String key = "1234567890"; //密钥,可自定义
System.out.println("明文为:" + clearText);
cipherText = azdg.encrypt(clearText, key);
System.out.println("加密后为:" + cipherText);
cleanText = azdg.decrypt(cipherText, key);
System.out.println("解密后为:" + cleanText);
}
/**
* 加密算法
* */
public String encrypt(String txt, String key) {
String encrypt_key = "0f9cfb7a9acced8a4167ea8006ccd098";
int ctr = 0;
String tmp = "";
int i;
for (i = 0; i < txt.length(); i++) {
ctr = (ctr == encrypt_key.length()) ? 0 : ctr;
tmp = tmp + encrypt_key.charAt(ctr) +
(char) (txt.charAt(i) ^ encrypt_key.charAt(ctr));
ctr++;
}
return base64_encode(key(tmp, key));
}
/**
* 解密算法
*/
public String decrypt(String cipherText, String key) {
// base64解码
cipherText = base64_decode(cipherText);
cipherText = key(cipherText, key);
String tmp = "";
for (int i = 0; i < cipherText.length(); i++) {
int c = cipherText.charAt(i) ^ cipherText.charAt(i + 1);
String x = "" + (char) c;
tmp += x;
i++;
}
return tmp;
}
public String key(String txt, String encrypt_key) {
encrypt_key = strMD5(encrypt_key);
int ctr = 0;
String tmp = "";
for (int i = 0; i < txt.length(); i++) {
ctr = (ctr == encrypt_key.length()) ? 0 : ctr;
int c = txt.charAt(i) ^ encrypt_key.charAt(ctr);
String x = "" + (char) c;
tmp = tmp + x;
ctr++;
}
return tmp;
}
public String base64_encode(String str) {
return new sun.misc.BASE64Encoder().encode(str.getBytes());
}
public String base64_decode(String str) {
sun.misc.BASE64Decoder decoder = new sun.misc.BASE64Decoder();
if (str == null) {
return null;
}
try {
return new String(decoder.decodeBuffer(str));
} catch (IOException e) {
e.printStackTrace();
return null;
}
}
public static final String strMD5(String s) {
char[] hexDigits = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f'
};
try {
byte[] strTemp = s.getBytes();
MessageDigest mdTemp = MessageDigest.getInstance("MD5");
mdTemp.update(strTemp);
byte[] md = mdTemp.digest();
int j = md.length;
char[] str = new char[j * 2];
int k = 0;
for (int i = 0; i < j; i++) {
byte byte0 = md[i];
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
str[k++] = hexDigits[byte0 & 0xf];
}
return new String(str);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
测试效果:
1561106159
明文为:jxtyfrc哇O(∩_∩)O~
加密后为:VWJWKV98BXkAOFB0BmdT5ZOAABQDeVLiibIAXVPiibtXdVlGWHk=
解密后为:jxtyfrc哇O(∩_∩)O~
如果:sun.misc.BASE64Encoder()提示错误找不到可以,尝试删除JRE System Libraries并重新添加解决,在Java Build Path窗口,点击第三个选项卡Libraries,选择JRE System Libraries。