31 Star 259 Fork 131

小螺旋丸/codeMan

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Md5Util.java 812 Bytes
一键复制 编辑 原始数据 按行查看 历史
package util;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
* MD5工具类
*/
public class Md5Util {
public static String digest(String str) {
byte[] bytes;
try {
MessageDigest messageDigest = MessageDigest.getInstance("MD5");
messageDigest.update(str.getBytes(StandardCharsets.UTF_8));
bytes = messageDigest.digest();
} catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
}
StringBuilder builder = new StringBuilder();
for (byte aByte : bytes) {
if (Integer.toHexString(0xFF & aByte).length() == 1) {
builder.append("0").append(Integer.toHexString(0xFF & aByte));
} else {
builder.append(Integer.toHexString(0xFF & aByte));
}
}
return builder.toString();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zrxjava/codeMan.git
git@gitee.com:zrxjava/codeMan.git
zrxjava
codeMan
codeMan
master

搜索帮助