码迷,mamicode.com
首页 > 移动开发 > 详细

android MD5加密算法

时间:2014-11-11 14:25:33      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:java   android   md5   

public class MD5test {


/**
* @param args
* @throws NoSuchAlgorithmException
*/
public static void main(String[] args) throws NoSuchAlgorithmException {
String pwd = "123456";
MessageDigest digest = MessageDigest.getInstance("MD5");
byte[] result = digest.digest(pwd.getBytes());
StringBuilder sb = new StringBuilder();
for(byte b : result){
int number = b&0xff; 
String hex = Integer.toHexString(number);
if(hex.length()==1){
sb.append("0");
}
sb.append(hex);
}
System.out.println(sb.toString());

}
}

android MD5加密算法

标签:java   android   md5   

原文地址:http://blog.csdn.net/u014600432/article/details/41010549

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