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

java MD5加密工具类

时间:2017-03-28 22:50:21      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:使用   run   security   math   32位   digest   iges   bytes   int   

 1 import java.math.BigInteger;
 2 import java.security.MessageDigest;
 3 import java.security.NoSuchAlgorithmException;
 4 
 5 public class MD5Utils {
 6     /**
 7      * 使用md5的算法进行加密
 8      */
 9     public static String md5(String plainText) {
10         byte[] secretBytes = null;
11         try {
12             secretBytes = MessageDigest.getInstance("md5").digest(
13                     plainText.getBytes());
14         } catch (NoSuchAlgorithmException e) {
15             throw new RuntimeException("没有md5这个算法!");
16         }
17         String md5code = new BigInteger(1, secretBytes).toString(16);// 16进制数字
18         // 如果生成数字未满32位,需要前面补0
19         for (int i = 0; i < 32 - md5code.length(); i++) {
20             md5code = "0" + md5code;
21         }
22         return md5code;
23     }
24 
25     public static void main(String[] args) {
26         System.out.println(md5("123"));
27     }
28 
29 }

 

java MD5加密工具类

标签:使用   run   security   math   32位   digest   iges   bytes   int   

原文地址:http://www.cnblogs.com/qiushuiblog/p/6637435.html

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