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

java32为md5加密

时间:2014-11-19 20:36:17      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   os   sp   java   for   

代码如下

<span style="font-size:18px;">import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Main {

	public static void main(String[] args) {
		Main Main = new Main();
		System.out.println(Main.encryption("xiaowen123"));
	}

	/**
	 * 
	 * @param plainText
	 *            明文
	 * @return 32位密文
	 */
	public String encryption(String plainText) {
		String md5 = new String();
		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));
			}

			md5 = buf.toString();

		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		}
		return md5;
	}
}</span>

详细地址:http://java.662p.com/thread-3792-1-1.html

java32为md5加密

标签:style   blog   http   io   ar   os   sp   java   for   

原文地址:http://blog.csdn.net/wenzhilanyu2012/article/details/41286841

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