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