MD5 加密工具类

来源:互联网 发布:led显示屏软件通用版 编辑:程序博客网 时间:2024/06/13 01:14
public class MD5Encoder {    /**     * MD5加密     * @param string     * @return     * @throws Exception     */    public static String encode(String string) throws Exception {        byte[] hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8"));        StringBuilder hex = new StringBuilder(hash.length * 2);        for (byte b : hash) {            if ((b & 0xFF) < 0x10) {                hex.append("0");            }            hex.append(Integer.toHexString(b & 0xFF));        }        return hex.toString();    }}
0 0
原创粉丝点击