2018-06-01 00:02:53 +01:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package sha3
|
|
|
|
|
2020-08-25 17:08:04 +01:00
|
|
|
// SHAKE128 and SHAKE256 are FIPS approved XOFs. The cSHAKE128/256
|
|
|
|
// are SHAKE-based XOFs supporting domain separation.
|
2018-06-01 00:02:53 +01:00
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ShakeHash defines the interface to hash functions that
|
|
|
|
// support arbitrary-length output.
|
|
|
|
type ShakeHash interface {
|
|
|
|
// Write absorbs more data into the hash's state. It panics if input is
|
|
|
|
// written to it after output has been read from it.
|
|
|
|
io.Writer
|
|
|
|
|
|
|
|
// Read reads more output from the hash; reading affects the hash's
|
|
|
|
// state. (ShakeHash.Read is thus very different from Hash.Sum)
|
|
|
|
// It never returns an error.
|
|
|
|
io.Reader
|
|
|
|
|
|
|
|
// Clone returns a copy of the ShakeHash in its current state.
|
|
|
|
Clone() ShakeHash
|
|
|
|
|
|
|
|
// Reset resets the ShakeHash to its initial state.
|
|
|
|
Reset()
|
|
|
|
}
|
|
|
|
|
|
|
|
// cSHAKE specific context
|
|
|
|
type cshakeState struct {
|
|
|
|
state // SHA-3 state context and Read/Write operations
|
|
|
|
|
|
|
|
// initBlock is the cSHAKE specific initialization set of bytes. It is initialized
|
|
|
|
// by newCShake function and stores concatenation of N followed by S, encoded
|
2020-08-29 02:12:49 +01:00
|
|
|
// by the method specified in 3.3 of [1] and padded with bytepad function.
|
|
|
|
// Used by Reset() to restore initial state.
|
2018-06-01 00:02:53 +01:00
|
|
|
initBlock []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// Consts for configuring initial SHA-3 state
|
|
|
|
const (
|
2020-08-29 02:12:49 +01:00
|
|
|
sfxShake = 0x1f
|
|
|
|
sfxCShake = 0x04
|
|
|
|
rate128 = 168
|
|
|
|
rate256 = 136
|
2018-06-01 00:02:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func bytepad(input []byte, w int) []byte {
|
|
|
|
// leftEncode always returns max 9 bytes
|
|
|
|
buf := make([]byte, 0, 9+len(input)+w)
|
|
|
|
buf = append(buf, leftEncode(uint64(w))...)
|
|
|
|
buf = append(buf, input...)
|
|
|
|
padlen := w - (len(buf) % w)
|
|
|
|
return append(buf, make([]byte, padlen)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func leftEncode(value uint64) []byte {
|
|
|
|
var b [9]byte
|
|
|
|
binary.BigEndian.PutUint64(b[1:], value)
|
|
|
|
// Trim all but last leading zero bytes
|
|
|
|
i := byte(1)
|
|
|
|
for i < 8 && b[i] == 0 {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
// Prepend number of encoded bytes
|
|
|
|
b[i-1] = 9 - i
|
|
|
|
return b[i-1:]
|
|
|
|
}
|
|
|
|
|
2020-08-29 02:12:49 +01:00
|
|
|
func newCShake(N, S []byte, sfx byte, shaId uint8) ShakeHash {
|
|
|
|
c := cshakeState{state: state{sfx: sfx, desc: Sha3Desc[shaId]}}
|
2018-06-01 00:02:53 +01:00
|
|
|
|
|
|
|
// leftEncode returns max 9 bytes
|
2020-08-29 02:12:49 +01:00
|
|
|
b := make([]byte, 0, 9*2+len(N)+len(S))
|
|
|
|
b = append(b, leftEncode(uint64(len(N)*8))...)
|
|
|
|
b = append(b, N...)
|
|
|
|
b = append(b, leftEncode(uint64(len(S)*8))...)
|
|
|
|
b = append(b, S...)
|
|
|
|
c.initBlock = bytepad(b, c.BlockSize())
|
|
|
|
c.Write(c.initBlock)
|
2018-06-01 00:02:53 +01:00
|
|
|
return &c
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset resets the hash to initial state.
|
|
|
|
func (c *cshakeState) Reset() {
|
|
|
|
c.state.Reset()
|
2020-08-29 02:12:49 +01:00
|
|
|
c.Write(c.initBlock)
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clone returns copy of a cSHAKE context within its current state.
|
|
|
|
func (c *cshakeState) Clone() ShakeHash {
|
|
|
|
b := make([]byte, len(c.initBlock))
|
|
|
|
copy(b, c.initBlock)
|
2020-08-29 02:12:49 +01:00
|
|
|
return &cshakeState{state: c.state, initBlock: b}
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clone returns copy of SHAKE context within its current state.
|
|
|
|
func (c *state) Clone() ShakeHash {
|
2020-08-29 02:12:49 +01:00
|
|
|
dup := *c
|
|
|
|
return &dup
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewShake128 creates a new SHAKE128 variable-output-length ShakeHash.
|
|
|
|
// Its generic security strength is 128 bits against all attacks if at
|
|
|
|
// least 32 bytes of its output are used.
|
|
|
|
func NewShake128() ShakeHash {
|
2020-08-29 02:12:49 +01:00
|
|
|
return &state{sfx: sfxShake, desc: Sha3Desc[SHAKE128]}
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewShake256 creates a new SHAKE256 variable-output-length ShakeHash.
|
|
|
|
// Its generic security strength is 256 bits against all attacks if
|
|
|
|
// at least 64 bytes of its output are used.
|
|
|
|
func NewShake256() ShakeHash {
|
2020-08-29 02:12:49 +01:00
|
|
|
return &state{sfx: sfxShake, desc: Sha3Desc[SHAKE256]}
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewCShake128 creates a new instance of cSHAKE128 variable-output-length ShakeHash,
|
|
|
|
// a customizable variant of SHAKE128.
|
|
|
|
// N is used to define functions based on cSHAKE, it can be empty when plain cSHAKE is
|
|
|
|
// desired. S is a customization byte string used for domain separation - two cSHAKE
|
|
|
|
// computations on same input with different S yield unrelated outputs.
|
|
|
|
// When N and S are both empty, this is equivalent to NewShake128.
|
|
|
|
func NewCShake128(N, S []byte) ShakeHash {
|
|
|
|
if len(N) == 0 && len(S) == 0 {
|
|
|
|
return NewShake128()
|
|
|
|
}
|
2020-08-29 02:12:49 +01:00
|
|
|
return newCShake(N, S, sfxCShake, SHAKE128)
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewCShake256 creates a new instance of cSHAKE256 variable-output-length ShakeHash,
|
|
|
|
// a customizable variant of SHAKE256.
|
|
|
|
// N is used to define functions based on cSHAKE, it can be empty when plain cSHAKE is
|
|
|
|
// desired. S is a customization byte string used for domain separation - two cSHAKE
|
|
|
|
// computations on same input with different S yield unrelated outputs.
|
|
|
|
// When N and S are both empty, this is equivalent to NewShake256.
|
|
|
|
func NewCShake256(N, S []byte) ShakeHash {
|
|
|
|
if len(N) == 0 && len(S) == 0 {
|
|
|
|
return NewShake256()
|
|
|
|
}
|
2020-08-29 02:12:49 +01:00
|
|
|
return newCShake(N, S, sfxCShake, SHAKE256)
|
2018-06-01 00:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ShakeSum128 writes an arbitrary-length digest of data into hash.
|
|
|
|
func ShakeSum128(hash, data []byte) {
|
|
|
|
h := NewShake128()
|
|
|
|
h.Write(data)
|
|
|
|
h.Read(hash)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ShakeSum256 writes an arbitrary-length digest of data into hash.
|
|
|
|
func ShakeSum256(hash, data []byte) {
|
|
|
|
h := NewShake256()
|
|
|
|
h.Write(data)
|
|
|
|
h.Read(hash)
|
|
|
|
}
|