javajdk加密_jdk实现常见的加密算法
Base64
内容加密
public static String encode(String str) {
Encoder().Bytes());
}
解密
public static String decode(String str) {
return new Decoder().decode(str));
java加密方式有哪些
}
测试代码
String str = "this is a test";
String encode = de(str);
String decode = Base64Util.decode(encode);
System.out.println("原⽂:" + str + ";\nBase64加密后:" + encode + ";\nBase64解密后:" + decode);
输出的内容是:
原⽂:this is a test;
Base64加密后:dGhpcyBpcyBhIHRlc3Q=;
Base64解密后:this is a test
Base64是Java 8中实现了的BASE64编解码API,它在java.util包中,上⾯看到的是最基本的Basic编码,除此以外还有URL编码和MIME 编码,感兴趣的可以⾃⾏了解。
MD5
加密的核⼼代码
public static String encode(String str) {
try {
MessageDigest digest = Instance("MD5");
byte[] md5Byte = digest.Bytes());
return Conversion.bytesToHexString(md5Byte);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
}
}
在这⾥如果直接把md5Bye转换为String的话会发现是⼀堆乱码,这是因为加密是将字节按照⼀定的规
则进⾏了转换,转换后出什么样的怪字符都是正常的。因此⼀般的做法是将加密后的byte数组转换为⼗六进制的字符串。
public static String bytesToHexString(byte[] b) {
StringBuilder stringBuilder = new StringBuilder();
if (b == null || b.length <= 0) {
return null;
}
for (int i = 0; i < b.length; i++) {
int v = b[i] & 0xFF;
String hv = HexString(v);
if (hv.length() < 2) {
stringBuilder.append(0);
}
stringBuilder.append(hv);
}
String();
}
测试输出的代码是:
原⽂:this is a test;MD5加密后:54b0c58c7ce9f2a8b551351102ee0938
SHA
核⼼代码
public static String encode(String str) {
try {
MessageDigest digest = Instance("SHA-1");
byte[] shaByte = digest.Bytes());
return Conversion.bytesToHexString(shaByte);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
}
}
测试代码的输出结果是:
原⽂:this is a test;
SHA加密后:fa26be19de6bff93f70bc2308434e4a440bbad02
通过上⾯的代码可以看出MD5和SHA算法都是通过MessageDigest 来实现的,通过jdk的官⽅⽂档看以看出
详细代码见这⾥

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。