码迷,mamicode.com
首页 > 其他好文 > 详细

md5

时间:2017-04-17 13:04:29      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:ati   turn   rac   hal   app   security   cat   html   algorithm   

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Test{
	public static void main(String[] args) {
		Md5("123456") ;
		//结果
		//    result: e10adc3949ba59abbe56e057f20f883e
		//    result: 49ba59abbe56e057

	}
	private static String Md5(String plainText ) { 
		try { 
			MessageDigest md = MessageDigest.getInstance("MD5"); 
			md.update(plainText.getBytes()); 
			byte b[] = md.digest(); 
			int i; 
			StringBuffer buf = new StringBuffer(""); 
			for (int offset = 0; offset < b.length; offset++) { 
			i = b[offset]; 
			if(i<0) i+= 256; 
			if(i<16) 
			buf.append("0"); 
			buf.append(Integer.toHexString(i)); 
			} 
	
			System.out.println("result: " + buf.toString());//32位的加密 
	
			System.out.println("result: " + buf.toString().substring(8,24));//16位的加密 
			return buf.toString() ;
		} catch (NoSuchAlgorithmException e) { 
			e.printStackTrace(); 
			return null ;
		} 
	} 
}

md5

标签:ati   turn   rac   hal   app   security   cat   html   algorithm   

原文地址:http://www.cnblogs.com/wzjhoutai/p/6722153.html

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