Go 利用crypto实现sha3_512计算方法
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_512 demo.")
str1 := "https://const.net.cn"
str2 := "/"
w := sha3.New512()
io.WriteString(w, str1)
io.WriteString(w, str2)
hashstr := fmt.Sprintf("sha3_512 = %x", w.Sum(nil))
fmt.Println(hashstr)
}
输出:
go run .
go crypto sha3_512 demo.
sha3_512 = 540bc484763d923575db2aec61fab3502524225f127270301d1cf7f572bf17cd252241322c9df8875df159e732f344cd2cb83991bfc1f3dfbe43c1887f366380
echo -n "https://const.net.cn/" | openssl dgst -sha3-512
(stdin)= 540bc484763d923575db2aec61fab3502524225f127270301d1cf7f572bf17cd252241322c9df8875df159e732f344cd2cb83991bfc1f3dfbe43c1887f366380
本文链接地址:https://const.net.cn/60.html