HmacMd5加密算法

来源:互联网 发布:免费的linux云主机 编辑:程序博客网 时间:2024/06/05 09:48
package com.haiyisoft.evportal.token.action;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;import com.haiyisoft.ep.log.AppLogUtil;public class HMacMD5 {/** * 计算参数的md5信息 *  * @param str *            待处理的字节数组 * @return md5摘要信息 * @throws NoSuchAlgorithmException */private static byte[] md5(byte[] str) throws NoSuchAlgorithmException {MessageDigest md = MessageDigest.getInstance("MD5");md.update(str);return md.digest();}/** * 将待加密数据data,通过密钥key,使用hmac-md5算法进行加密,然后返回加密结果。 参照rfc2104 HMAC算法介绍实现。 *  * @author 姜修武 * @param key *            密钥 * @param data *            待加密数据 * @return 加密结果 * @throws NoSuchAlgorithmException */public static byte[] getHmacMd5Bytes(byte[] key, byte[] data)throws NoSuchAlgorithmException {/* * HmacMd5 calculation formula: HMAC(K,M)=H(K⊕opad∣H(K⊕ipad∣M)) * HmacMd5 计算公式:HMAC(K,M)=H(K⊕opad∣H(K⊕ipad∣M)) * H代表hash算法,本类中使用MD5算法,K是密钥(Operator_Secret),长度可为64字节,若小于该长度,在密钥后面用“0”补齐 * data是消息内容, ipad为0x36,opad为0x5C。 */int length = 64;byte[] ipad = new byte[length];byte[] opad = new byte[length];for (int i = 0; i < 64; i++) {ipad[i] = 0x36;//ipad为0x36opad[i] = 0x5C;//opad为0x5C}byte[] actualKey = key; //  key.byte[] keyArr = new byte[length]; // 把key转化成64位的byte类型// 如果密钥长度,大于64字节,就使用哈希算法,计算其摘要,作为真正的密钥。if (key.length > length) {actualKey = md5(key);}for (int i = 0; i < actualKey.length; i++) {keyArr[i] = actualKey[i];}/* * 如果密钥长度不足64字节,就使用0x00补齐到64字节。 * 1.在密钥(Operator_Secret)后面添加0来创建一个长为64字节的字符串(keyArr) */if (actualKey.length < length) {for (int i = actualKey.length; i < keyArr.length; i++)keyArr[i] = 0x00;}/* * 2)将上一步生成的字符串(str)与ipad(0x36)做异或运算,形成结果字符串(kIpadXorResult); * calc K XOR ipad 使用密钥和ipad进行异或运算。 */byte[] kIpadXorResult = new byte[length];for (int i = 0; i < length; i++) {kIpadXorResult[i] = (byte) (keyArr[i] ^ ipad[i]);}/* * 3)将消息内容data附加到第二步的结果字符串(istr)的末尾; * append "data" to the end of "K XOR ipad" 将待加密数据追加到K XOR ipad计算结果后面。 */byte[] firstAppendResult = new byte[kIpadXorResult.length + data.length];for (int i = 0; i < kIpadXorResult.length; i++) {firstAppendResult[i] = kIpadXorResult[i];}for (int i = 0; i < data.length; i++) {firstAppendResult[i + keyArr.length] = data[i];}/* * 4)做md5运算于第三步生成的数据流(firstHashResult) * calc H(K XOR ipad, text) 使用哈希算法计算上面结果的摘要。 */byte[] firstHashResult = md5(firstAppendResult);/* * 5)将第一步生成的字符串(keyArr)与opad(0x5c)做异或运算,形成结果字符串(kOpadXorResult); * calc keyArr XOR opad 使用密钥和opad进行异或运算。 */byte[] kOpadXorResult = new byte[length];for (int i = 0; i < length; i++) {kOpadXorResult[i] = (byte) (keyArr[i] ^ opad[i]);}/* * 6)再将第四步的结果(firstHashResult)附加到第五步的结果字符串(kOpadXorResult)的末尾; * append "H(K XOR ipad, text)" to the end of "K XOR opad" 将H(K XOR * ipad, text)结果追加到K XOR opad结果后面 */byte[] secondAppendResult = new byte[kOpadXorResult.length+ firstHashResult.length];for (int i = 0; i < kOpadXorResult.length; i++) {secondAppendResult[i] = kOpadXorResult[i];}for (int i = 0; i < firstHashResult.length; i++) {secondAppendResult[i + keyArr.length] = firstHashResult[i];}/* * 7)做md5运算于第六步生成的数据流(secondAppendResult),输出最终结果(hmacMd5Bytes)。 * H(K XOR opad, H(K XOR ipad, text)) 对上面的数据进行哈希运算。 */byte[] hmacMd5Bytes = md5(secondAppendResult);return hmacMd5Bytes;}public static String getHmacMd5Str(String key,String data){ String result = ""; try { byte[] keyByte = key.getBytes("UTF-8"); byte[] dataByte = data.getBytes("UTF-8"); byte[] hmacMd5Byte = getHmacMd5Bytes(keyByte,dataByte); StringBuffer md5StrBuff = new StringBuffer(); for(int i=0;i<hmacMd5Byte.length;i++){ if(Integer.toHexString(0xFF&hmacMd5Byte[i]).length()==1){  md5StrBuff.append("0").append(Integer.toHexString(0xFF&hmacMd5Byte[i])); }else {md5StrBuff.append(Integer.toHexString(0xFF&hmacMd5Byte[i])); }} result = md5StrBuff.toString().toUpperCase(); } catch(Exception e){e.printStackTrace();AppLogUtil.getLoger("serviceCallerLog").warn("error getHmacMd5Str()");} return result; }}

0 0
原创粉丝点击