我想将随机值读入字节数组。它是这样工作的:
hash = make([]byte,20)
_, err := rand.Read(hash)
但我想做类似的事情
var hash [20]byte
这导致
cannot use hash (type [20]byte) as type []byte in argument to "crypto/rand".Read
如何在 rand.Read 中使用 [20] 字节?
相关分类