func crypto.RegisterHash
9 uses
crypto (current package)
crypto.go#L145: func RegisterHash(h Hash, f func() hash.Hash) {
crypto/md5
md5.go#L21: crypto.RegisterHash(crypto.MD5, New)
crypto/sha1
sha1.go#L19: crypto.RegisterHash(crypto.SHA1, New)
crypto/sha256
sha256.go#L18: crypto.RegisterHash(crypto.SHA224, New224)
sha256.go#L19: crypto.RegisterHash(crypto.SHA256, New)
crypto/sha512
sha512.go#L22: crypto.RegisterHash(crypto.SHA384, New384)
sha512.go#L23: crypto.RegisterHash(crypto.SHA512, New)
sha512.go#L24: crypto.RegisterHash(crypto.SHA512_224, New512_224)
sha512.go#L25: crypto.RegisterHash(crypto.SHA512_256, New512_256)
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |