Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewSHAKE128 (0.07 sec)

  1. api/go1.24.txt

    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
    pkg crypto/sha3, func Sum256([]uint8) [32]uint8 #69982
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Dec 17 21:28:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    []byte) error { if len(b) < marshaledSize { return errors.New("sha3: invalid hash state") } if err := s.d.UnmarshalBinary(b[:marshaledSize]); 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:...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top