我正在尝试为 pubkey 生成实现curve25519 算法。但是我陷入了如何从 Go 中的 sha256 编码字符串生成 pubkey 的问题上?
我通过 Python 从 sha256 编码的字符串生成 pubkey 没有问题:
import hashlib
import x25519
example_string = 'kerielle'
sha = hashlib.sha256(example_string.encode()).hexdigest()
hash_bytes = bytes.fromhex(sha)
public_key = x25519.scalar_base_mult(hash_bytes)
hex_res = public_key.hex()
print(hex_res)
>>> 0fa065fcaedecef9aebb5c79ea1c613e82bc5534c4b139d71f3a1cb0cb956652
但是如何在 Go 中做同样的事情呢?这里的基本示例:
var publicKey [32]byte
privateKey := (*[32]byte)(bytes.Repeat([]byte("1"), 32))
curve25519.ScalarBaseMult(&publicKey, privateKey)
fmt.Printf("%x\n", publicKey)
>>> 04f5f29162c31a8defa18e6e742224ee806fc1718a278be859ba5620402b8f3a