diff options
Diffstat (limited to 'crypto/sha3/hashes.go')
-rw-r--r-- | crypto/sha3/hashes.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/sha3/hashes.go b/crypto/sha3/hashes.go index 669cd5543..fa0d7b436 100644 --- a/crypto/sha3/hashes.go +++ b/crypto/sha3/hashes.go @@ -15,6 +15,9 @@ import ( // NewKeccak256 creates a new Keccak-256 hash. func NewKeccak256() hash.Hash { return &state{rate: 136, outputLen: 32, dsbyte: 0x01} } +// NewKeccak512 creates a new Keccak-512 hash. +func NewKeccak512() hash.Hash { return &state{rate: 72, outputLen: 64, dsbyte: 0x01} } + // New224 creates a new SHA3-224 hash. // Its generic security strength is 224 bits against preimage attacks, // and 112 bits against collision attacks. |