首页 > 代码库 > android MD5加密算法
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());
}
}
/**
* @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加密算法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。