- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for newCShake128 (1.5 sec)
-
api/go1.24.txt
pkg crypto/sha3, func New256() *SHA3 #69982 pkg crypto/sha3, func New384() *SHA3 #69982 pkg crypto/sha3, func New512() *SHA3 #69982 pkg crypto/sha3, func NewCSHAKE128([]uint8, []uint8) *SHAKE #69982 pkg crypto/sha3, func NewCSHAKE256([]uint8, []uint8) *SHAKE #69982 pkg crypto/sha3, func NewSHAKE128() *SHAKE #69982 pkg crypto/sha3, func NewSHAKE256() *SHAKE #69982 pkg crypto/sha3, func Sum224([]uint8) [28]uint8 #69982
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 17 21:28:29 UTC 2024 - 14.2K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
S is a customization byte string used for domain // separation. When N and S are both empty, this is equivalent to NewShake128. func NewCShake128(N, S []byte) *SHAKE { // The actual logic is in a separate function to outline this allocation. c := &SHAKE{} return newCShake128(c, N, S) } func newCShake128(c *SHAKE, N, S []byte) *SHAKE { if len(N) == 0 && len(S) == 0 { *c = *NewShake128() return c } return newCShake(c, N, S, rateK256, 32, dsbyteCShake) } // NewCShake256 creates a new cSHAKE256 XOF. //...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.zip
ize]); err != nil { return err } s.initBlock = bytes.Clone(b[marshaledSize:]) return nil } // NewShake128 creates a new SHAKE128 XOF. func NewShake128() *SHAKE { return &SHAKE{d: Digest{rate: rateK256, outputLen: 32, dsbyte: dsbyteShake}} } // NewShake256 creates a new SHAKE256 XOF. func NewShake256() *SHAKE { return &SHAKE{d: Digest{rate: rateK512, outputLen: 64, dsbyte: dsbyteShake}} } // NewCShake128 creates a new cSHAKE128 XOF. // // N is used to define functions based on cSHAKE, it can be empty...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0)