Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewCSHAKE256 (0.21 sec)

  1. 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)
  2. lib/fips140/v1.1.0-rc1.zip

    && len(S) == 0 { *c = *NewShake128() return c } return newCShake(c, N, S, rateK256, 32, dsbyteCShake) } // NewCShake256 creates a new cSHAKE256 XOF. // // 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. When N and S are both empty, this is equivalent to NewShake256. func NewCShake256(N, S []byte) *SHAKE { // The actual logic is in a separate function to outline this allocation. c := &SHAKE{}...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  3. lib/fips140/v1.0.0-c2097c7c.zip

    len(N) == 0 && len(S) == 0 { return NewShake128() } return newCShake(N, S, rateK256, 32, dsbyteCShake) } // NewCShake256 creates a new cSHAKE256 XOF. // // 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. When N and S are both empty, this is equivalent to NewShake256. func NewCShake256(N, S []byte) *SHAKE { if len(N) == 0 && len(S) == 0 { return NewShake256() } return newCShake(N, S, rateK512,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
Back to top