We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7dcf10 commit 182114dCopy full SHA for 182114d
sha3/shake.go
@@ -40,7 +40,7 @@ func (d *state) Clone() ShakeHash {
40
// least 32 bytes of its output are used.
41
func NewShake128() ShakeHash { return &state{rate: 168, dsbyte: 0x1f} }
42
43
-// NewShake256 creates a new SHAKE128 variable-output-length ShakeHash.
+// NewShake256 creates a new SHAKE256 variable-output-length ShakeHash.
44
// Its generic security strength is 256 bits against all attacks if
45
// at least 64 bytes of its output are used.
46
func NewShake256() ShakeHash { return &state{rate: 136, dsbyte: 0x1f} }
0 commit comments