我有一个从公钥和私钥生成HMAC值的方法。
这是我的方法代码:
String mykey = "fb6a1271f98099ac96cc0002d5e8022b";
String test = "json6b17f33e25e2d8197462d1c6bcb0b1302156641988";
try {
Mac mac = Mac.getInstance("HmacSHA1");
SecretKeySpec secret = new SecretKeySpec(mykey.getBytes(),
"HmacSHA1");
mac.init(secret);
byte[] digest = mac.doFinal(test.getBytes());
for (byte b : digest) {
System.out.format("%02x", b);
}
System.out.println();
} catch (Exception e) {
System.out.println(e.getMessage());
}
现在根据要求,我需要使用从它返回的值作为String。
以下是
中方法返回的值System.out.format("%02x", b); =bd0aea241e88c8a22692eba02887ad97a220f827
请帮帮我..
答案 0 :(得分:0)
我会推荐这样的东西(使用StringBuilder)
StringBuilder sb = new StringBuilder(digest.length * 2);
Formatter formatter = new Formatter(sb);
for (byte b : digest) {
formatter.format("%02x", b);
}
return sb.toString();
答案 1 :(得分:0)
BigInteger
具有出色的基本转换功能:
return new BigInteger(mac.doFinal(test.getBytes())).toString(16);