MD5加密

作者: Judy_pass | 来源:发表于2017-06-15 08:23 被阅读14次

    public class MD5 {
    public static String md5(String str){
    if (TextUtils.isEmpty(str)){
    return "";
    }
    MessageDigest md5=null;
    try {
    md5=MessageDigest.getInstance("MD5");
    byte[] bytes=md5.digest(str.getBytes());
    String result="";
    for (byte b:bytes){
    String temp=Integer.toHexString(b&0xff);
    if (temp.length()==1){
    temp="0"+temp;
    }
    result += temp;
    }
    return result;
    } catch (NoSuchAlgorithmException e) {
    e.printStackTrace();
    }
    return "";
    }
    }

    相关文章

      网友评论

          本文标题:MD5加密

          本文链接:https://www.haomeiwen.com/subject/hylyqxtx.html