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

MD5加密算法Java代码

时间:2017-07-17 15:20:08      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:com   gen   exce   hal   .com   block   string   port   algorithm   

原文:http://www.open-open.com/code/view/1428398234916

 

    import java.security.MessageDigest;  
    import java.security.NoSuchAlgorithmException;  
      
    public class MD5Utils {  
          
        /** 
         * md5加密方法 
         * @param password 
         * @return 
         */  
        public static String md5Password(String password) {  
      
            try {  
                // 得到一个信息摘要器  
                MessageDigest digest = MessageDigest.getInstance("md5");  
                byte[] result = digest.digest(password.getBytes());  
                StringBuffer buffer = new StringBuffer();  
                // 把没一个byte 做一个与运算 0xff;  
                for (byte b : result) {  
                    // 与运算  
                    int number = b & 0xff;// 加盐  
                    String str = Integer.toHexString(number);  
                    // System.out.println(str);  
                    if (str.length() == 1) {  
                        buffer.append("0");  
                    }  
                    buffer.append(str);  
                }  
      
                // 标准的md5加密后的结果  
                return buffer.toString();  
            } catch (NoSuchAlgorithmException e) {  
                // TODO Auto-generated catch block  
                e.printStackTrace();  
                return "";  
            }  
      
        }  
      
    }  

 

MD5加密算法Java代码

标签:com   gen   exce   hal   .com   block   string   port   algorithm   

原文地址:http://www.cnblogs.com/shihaiming/p/7194205.html

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