Source File
sha256.go
Belonging Package
github.com/multiformats/go-multihash/register/sha256
// This package has no purpose except to perform registration of multihashes.//// It is meant to be used as a side-effecting import, e.g.//// import (// _ "github.com/multiformats/go-multihash/register/sha256"// )//// This package an implementation of sha256 using the go std, this is recomanded// if you are using go1.21 or above.package sha256import (multihash)func init() {multihash.Register(multihash.SHA2_256, sha256.New)}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |