MD5_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > MD5

MD5

 2014/6/10 18:45:07  tanjw  程序员俱乐部  我要评论(0)
  • 摘要:javaMD5参考blog:http://blog.163.com/yxhui_cool/blog/static/770197702012291433339/publicclassMD5{/***@parampasswordtheStringtobeencrypted*@returntheencryptedpassword*@throwsNoSuchAlgorithmException*/publicstaticStringencrypt(Stringpassword
  • 标签:

java?

MD5

?

参考blog: ?

http://blog.163.com/yxhui_cool/blog/static/770197702012291433339/

?

class="java" name="code">public class MD5 {
	/**
	 * @param password the String to be encrypted
	 * @return	the encrypted password
	 * @throws NoSuchAlgorithmException 
	 */
	public static String encrypt(String password)
			throws NoSuchAlgorithmException {
		MessageDigest md;
		// 生成一个MD5加密计算摘要
		md = MessageDigest.getInstance("MD5");
		// 计算md5函数
		md.update(password.getBytes());
		// digest()最后确定返回md5 hash值,返回值为8为字符串。因为md5 hash值是16位的hex值,实际上就是8位的字符
		// BigInteger函数则将8位的字符串转换成16位hex值,用字符串来表示;得到字符串形式的hash值
		// 基数为8时生成的字符串只有01234567 , 基数为16 时生成的字符串包含0-9 a-f  使用16进制时秘药的长度为32位
		byte[] bytes = md.digest();
		password = new BigInteger(1, bytes).toString(16);
		return password;
	}

	public static void main(String[] args) throws NoSuchAlgorithmException {
		System.out.println(MD5.encrypt("password"));
	}
}

?

MD5加密在理论上是不可逆的,相同的字符串是具有相同的MD5秘钥,将加密的字符串存放到数据库,下次再使用此字符串的时候,将字符串的秘钥与数据库中的值进行比较,可以鉴别是否是同一个字符串

  • 相关文章
发表评论
用户名: 匿名