美文网首页
MD5加密工具类

MD5加密工具类

作者: 吕小凯 | 来源:发表于2019-07-09 14:06 被阅读0次
    package com.nimble.cont.attnd.utils;
    
    import java.math.BigInteger;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    
    public class MD5Utils {
    
        public static String stringToMD5(String plainText) {
            byte[] secretBytes = null;
            try {
                secretBytes = MessageDigest.getInstance("md5").digest(
                        plainText.getBytes());
            } catch (NoSuchAlgorithmException e) {
                throw new RuntimeException("没有这个md5算法!");
            }
            String md5code = new BigInteger(1, secretBytes).toString(16);
            for (int i = 0; i < 32 - md5code.length(); i++) {
                md5code = "0" + md5code;
            }
            return md5code;
        }
    
    }
    

    相关文章

      网友评论

          本文标题:MD5加密工具类

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