码迷,mamicode.com
首页 > 编程语言 > 详细

标准JAVA MD5方法

时间:2018-08-07 18:01:12      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:tin   append   private   static   app   str   uil   char   dig   

private String MD5(String s) {
    try {
        MessageDigest md = MessageDigest.getInstance("MD5");
        byte[] bytes = md.digest(s.getBytes("utf-8"));
        return toHex(bytes);
    }
    catch (Exception e) {
        throw new RuntimeException(e);
    }
}

private static String toHex(byte[] bytes) {

    final char[] HEX_DIGITS = "0123456789ABCDEF".toCharArray();
    StringBuilder ret = new StringBuilder(bytes.length * 2);
    for (int i=0; i<bytes.length; i++) {
        ret.append(HEX_DIGITS[(bytes[i] >> 4) & 0x0f]);
        ret.append(HEX_DIGITS[bytes[i] & 0x0f]);
    }
    return ret.toString();
}

标准JAVA MD5方法

标签:tin   append   private   static   app   str   uil   char   dig   

原文地址:https://www.cnblogs.com/zjm-1/p/9438373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!