golang crypto 加密库使用

golang 中文文档
       
https://studygolang.com/pkgdoc
crypto 官方文档
        https://godoc.org/golang.org/x/crypto
sha3 官方文档
        https://godoc.org/golang.org/x/crypto/sha3
导入sha3包
        import "golang.org/x/crypto/sha3"
golang 开源项目大全
        https://www.jianshu.com/p/8e4356d15364
Keccak sha3实现
        https://github.com/ebfe/keccak
Keccak 官方文档
        https://godoc.org/github.com/ebfe/keccak
导入 Keccak 包
        go get github.com/ebfe/keccak
Keccak
        实现了sha3计算

你可能感兴趣的:(go)