Go 利用crypto实现sha3_256计算方法
SHA-3第三代安全散列算法(Secure Hash Algorithm 3),之前名为Keccak算法,设计者宣称在 Intel Core 2 的CPU上面,此算法的性能是12.6比特每时钟周期(cycles per byte)。
SHA-3 在2015年8月5日由 NIST 通过 FIPS 202 正式发表。
代码:
package main
import (
"fmt"
"io"
"golang.org/x/crypto/sha3"
)
func main() {
fmt.Println("go crypto sha3_256 demo.")
str1 := "https://const.net.cn"
str2 := "/"
w := sha3.New256()
io.WriteString(w, str1)
io.WriteString(w, str2)
hashstr := fmt.Sprintf("sha3_256 = %x", w.Sum(nil))
fmt.Println(hashstr)
}
输出:
go run .
go crypto sha3_256 demo.
sha3_256 = 8381f50d5d006a28ef44a4e3e8eefc4a8b3c8374f4796a44d5592c0caf48c55f
echo -n "https://const.net.cn/" | openssl dgst -sha3-256
(stdin)= 8381f50d5d006a28ef44a4e3e8eefc4a8b3c8374f4796a44d5592c0caf48c55f
本文链接地址:https://const.net.cn/58.html