diff options
author | 2024-07-08 07:33:11 +0000 | |
---|---|---|
committer | 2024-07-08 07:33:11 +0000 | |
commit | a81455e81c02d5c69b723b52c775a247313c82a2 (patch) | |
tree | 942e036c28e3f21edf43b2f8c467eeacc8bf6795 /vendor/golang.org/x/crypto/blake2s/blake2s.go | |
parent | [chore] upstep activity to v1.7.0-gts (#3074) (diff) | |
download | gotosocial-a81455e81c02d5c69b723b52c775a247313c82a2.tar.xz |
[chore]: Bump golang.org/x/crypto from 0.24.0 to 0.25.0 (#3080)
Diffstat (limited to 'vendor/golang.org/x/crypto/blake2s/blake2s.go')
-rw-r--r-- | vendor/golang.org/x/crypto/blake2s/blake2s.go | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vendor/golang.org/x/crypto/blake2s/blake2s.go b/vendor/golang.org/x/crypto/blake2s/blake2s.go index e3f46aab3..c25d07d4f 100644 --- a/vendor/golang.org/x/crypto/blake2s/blake2s.go +++ b/vendor/golang.org/x/crypto/blake2s/blake2s.go @@ -16,9 +16,10 @@ // // BLAKE2X is a construction to compute hash values larger than 32 bytes. It // can produce hash values between 0 and 65535 bytes. -package blake2s // import "golang.org/x/crypto/blake2s" +package blake2s import ( + "crypto" "encoding/binary" "errors" "hash" @@ -55,6 +56,13 @@ func Sum256(data []byte) [Size]byte { // and BinaryUnmarshaler for state (de)serialization as documented by hash.Hash. func New256(key []byte) (hash.Hash, error) { return newDigest(Size, key) } +func init() { + crypto.RegisterHash(crypto.BLAKE2s_256, func() hash.Hash { + h, _ := New256(nil) + return h + }) +} + // New128 returns a new hash.Hash computing the BLAKE2s-128 checksum given a // non-empty key. Note that a 128-bit digest is too small to be secure as a // cryptographic hash and should only be used as a MAC, thus the key argument |