gpt4 book ai didi

Java 与 Golang 的 HOTP (rfc-4226)

转载 作者:IT王子 更新时间:2023-10-29 01:24:02 24 4
gpt4 key购买 nike

我正在尝试在 Golang 中实现 HOTP (rfc-4226),但我正在努力生成有效的 HOTP。我可以用 java 生成它,但出于某种原因,我在 Golang 中的实现是不同的。以下是示例:

public static String constructOTP(final Long counter, final String key)
throws NoSuchAlgorithmException, DecoderException, InvalidKeyException {
final Mac mac = Mac.getInstance("HmacSHA512");

final byte[] binaryKey = Hex.decodeHex(key.toCharArray());

mac.init(new SecretKeySpec(binaryKey, "HmacSHA512"));
final byte[] b = ByteBuffer.allocate(8).putLong(counter).array();
byte[] computedOtp = mac.doFinal(b);

return new String(Hex.encodeHex(computedOtp));
}

在 Go 中:

func getOTP(counter uint64, key string) string {
str, err := hex.DecodeString(key)
if err != nil {
panic(err)
}
h := hmac.New(sha512.New, str)
bs := make([]byte, 8)
binary.BigEndian.PutUint64(bs, counter)
h.Write(bs)
return base64.StdEncoding.EncodeToString(h.Sum(nil))
}

我认为问题在于 Java 行:ByteBuffer.allocate(8).putLong(counter).array(); 生成的字节数组与 Go 行:binary .BigEndian.PutUint64(bs, 计数器).

在 Java 中,生成以下字节数组:83 -116 -9 -98 115 -126 -3 -48 在 Go 中:83 140 247 158 115 130 253 207.

有人知道这两条线的区别以及我如何移植 java 线吗?

最佳答案

Java中的byte类型是有符号的,取值范围是-128..127,而Go中的byte是一个别名uint8 的范围为 0..255。因此,如果要比较结果,则必须将负 Java 值移动 256(添加 256)。

提示:要以无符号方式显示 Java byte 值,请使用:byteValue & 0xff 将其转换为 int使用 byte 的 8 位作为 int 中的最低 8 位。或者更好:以十六进制形式显示两个结果,这样您就不必关心符号...

将 256 添加到您的负 Java 字节值,输出几乎与 Go 的相同:最后一个字节偏移 1:

javabytes := []int{83, -116, -9, -98, 115, -126, -3, -48}
for i, b := range javabytes {
if b < 0 {
javabytes[i] += 256
}
}
fmt.Println(javabytes)

输出是:

[83 140 247 158 115 130 253 208]

因此您的 Java 数组的最后一个字节是 208 而 Go 的是 207。我猜你的 counter 在你没有发布的代码中的其他地方增加了一次。

不同之处在于,在 Java 中您返回十六进制编码的结果,而在 Go 中您返回 Base64 编码的结果(它们是 2 种不同的编码,给出完全不同的结果)。正如您确认的那样,在 Go 中返回 hex.EncodeToString(h.Sum(nil)) 结果匹配。

提示 #2:要以带符号的方式显示 Go 的字节,只需将它们转换为 int8(带符号),如下所示:

gobytes := []byte{83, 140, 247, 158, 115, 130, 253, 207}
for _, b := range gobytes {
fmt.Print(int8(b), " ")
}

这个输出:

83 -116 -9 -98 115 -126 -3 -49 

关于Java 与 Golang 的 HOTP (rfc-4226),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47797100/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com