aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/sha3/sha3.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-02 03:02:57 +0800
committerFelix Lange <fjl@twurst.com>2016-10-02 03:26:43 +0800
commit54ea317375273c8bb558194eb04c73925da9ac14 (patch)
tree92b3aa79c040930bc3f5c37c978589bd7082ac12 /crypto/sha3/sha3.go
parent0731b44809f72ed5880dc3654ee70ae85420bd77 (diff)
downloaddexon-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.go2
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
}