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