diff options
author | Felix Lange <fjl@twurst.com> | 2016-10-02 03:02:57 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-10-02 03:26:43 +0800 |
commit | 54ea317375273c8bb558194eb04c73925da9ac14 (patch) | |
tree | 92b3aa79c040930bc3f5c37c978589bd7082ac12 /crypto/sha3/sha3.go | |
parent | 0731b44809f72ed5880dc3654ee70ae85420bd77 (diff) | |
download | dexon-54ea317375273c8bb558194eb04c73925da9ac14.tar dexon-54ea317375273c8bb558194eb04c73925da9ac14.tar.gz dexon-54ea317375273c8bb558194eb04c73925da9ac14.tar.bz2 dexon-54ea317375273c8bb558194eb04c73925da9ac14.tar.lz dexon-54ea317375273c8bb558194eb04c73925da9ac14.tar.xz dexon-54ea317375273c8bb558194eb04c73925da9ac14.tar.zst dexon-54ea317375273c8bb558194eb04c73925da9ac14.zip |
crypto/sha3: update from golang.org/x/crypto/sha3 a 80b25ed4
This pulls in the assembly implementation of keccakf1600 for amd64.
Diffstat (limited to 'crypto/sha3/sha3.go')
-rw-r--r-- | crypto/sha3/sha3.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sha3/sha3.go b/crypto/sha3/sha3.go index c8fd31cb0..c86167c0b 100644 --- a/crypto/sha3/sha3.go +++ b/crypto/sha3/sha3.go @@ -42,7 +42,7 @@ type state struct { storage [maxRate]byte // Specific to SHA-3 and SHAKE. - fixedOutput bool // whether this is a fixed-ouput-length instance + fixedOutput bool // whether this is a fixed-output-length instance outputLen int // the default output size in bytes state spongeDirection // whether the sponge is absorbing or squeezing } |