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

兔子--HMAC加密算法

时间:2014-12-14 14:39:02      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:加密   hmac加密算法   

	public static String initMacKey() throws Exception {

		KeyGenerator keyGenerator = KeyGenerator.getInstance("HmacMD5");
		SecretKey secretKey = keyGenerator.generateKey();
		return Base64.encodeToString(secretKey.getEncoded(), Base64.DEFAULT);
	}

	public String encrypt_HMAC(String source, String key) throws Exception {
		SecretKey secretKey = new SecretKeySpec(Base64.decode(key,
				Base64.DEFAULT), "HmacMD5");

		Mac mac = Mac.getInstance(secretKey.getAlgorithm());
		mac.init(secretKey);
		return Base64.encodeToString(mac.doFinal(source.getBytes()),
				Base64.DEFAULT);

	}
	//使用
	try{
		String key=initMacKey();
		String result=encrypt_HMAC("哈哈哈", key);
		
	}catch(Exception e){
		
	}

兔子--HMAC加密算法

标签:加密   hmac加密算法   

原文地址:http://blog.csdn.net/u013425527/article/details/41924473

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