diff options
author | Felix Lange <fjl@twurst.com> | 2016-10-02 03:45:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 03:45:29 +0800 |
commit | 920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108 (patch) | |
tree | 92b3aa79c040930bc3f5c37c978589bd7082ac12 /crypto/sha3/sha3.go | |
parent | 0731b44809f72ed5880dc3654ee70ae85420bd77 (diff) | |
parent | 54ea317375273c8bb558194eb04c73925da9ac14 (diff) | |
download | dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.tar dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.tar.gz dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.tar.bz2 dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.tar.lz dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.tar.xz dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.tar.zst dexon-920e1ccfe0b8a0fe205817e3e2f7d0ee7a98f108.zip |
Merge pull request #3068 from fjl/update-sha3
crypto/sha3: update from golang.org/x/crypto/sha3 a 80b25ed4
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 } |