zoukankan      html  css  js  c++  java
  • MD5加密

    package utils;
    import java.io.UnsupportedEncodingException;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    public class MD5Util {
     
     public static void main(String[] args) {
     }
     /**
         * MD5 加密
         */
        public static String getMD5Str(String str) {
            MessageDigest messageDigest = null;
     
            try {
                messageDigest = MessageDigest.getInstance("MD5");
     
                messageDigest.reset();
     
                messageDigest.update(str.getBytes("UTF-8"));
            } catch (NoSuchAlgorithmException e) {
                System.out.println("NoSuchAlgorithmException caught!");
                System.exit(-1);
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }
     
            byte[] byteArray = messageDigest.digest();
     
            StringBuffer md5StrBuff = new StringBuffer();
     
            for (int i = 0; i < byteArray.length; i++) {            
                if (Integer.toHexString(0xFF & byteArray[i]).length() == 1)
                    md5StrBuff.append("0").append(Integer.toHexString(0xFF & byteArray[i]));
                else
                    md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i]));
            }
     
            return md5StrBuff.toString();
        }
    }
  • 相关阅读:
    ATS项目更新(1) CC视图与备份路径同步
    IP地址的正则表达式
    python下载图片(2)
    NS2网络模拟(2)丢包率
    NS2网络模拟(7)homework03.tcl
    python 教程 第二十二章、 其它应用
    python 教程 第十九章、 图形界面编程
    python中string的操作函数
    python中对文件、文件夹的操作
    HTTP状态码(HTTP Status Code)
  • 原文地址:https://www.cnblogs.com/lbbk/p/11275266.html
Copyright © 2011-2022 走看看