MD5加密

Posted 拾荒者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MD5加密相关的知识,希望对你有一定的参考价值。


import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
* @author admin
*/
public class Md5Encryption {
private Md5Encryption() {

}

public static String getEncryption(String originString)
throws UnsupportedEncodingException {
String result = "";
if (originString != null) {
try {
// 指定加密的方式为MD5
MessageDigest md = MessageDigest.getInstance("MD5");
// 进行加密运算
byte[] bytes = md.digest(originString.getBytes("ISO8859-1"));
for (int i = 0; i < bytes.length; i++) {
// 将整数转换成十六进制形式的字符串 这里与0xff进行与运算的原因是保证转换结果为32位
String str = Integer.toHexString(bytes[i] & 0xFF);
if (str.length() == 1) {
str += "F";
}
result += str;
}
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
}
return result;
}

public static void main(String[] args) throws UnsupportedEncodingException {
String password = Md5Encryption.getEncryption("111111");
System.out.println(password);
System.out.println(Md5Encryption.getEncryption(password));
}
}

以上是关于MD5加密的主要内容,如果未能解决你的问题,请参考以下文章

md5 加密,既然无法解密,那这个加密的意义有啥呢? 对文件加密后怎么返回原值呢?

md5可以加密数组吗

md5加密以后的字符串长度

谁可以告诉我md5加密原理

js 前端md5加密 后端怎么办

ios 怎么使用md5进行加密