Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnmarshalBinary (0.08 sec)

  1. api/go1.24.txt

    pkg crypto/sha3, method (*SHA3) Reset() #69982
    pkg crypto/sha3, method (*SHA3) Size() int #69982
    pkg crypto/sha3, method (*SHA3) Sum([]uint8) []uint8 #69982
    pkg crypto/sha3, method (*SHA3) UnmarshalBinary([]uint8) error #69982
    pkg crypto/sha3, method (*SHA3) Write([]uint8) (int, error) #69982
    pkg crypto/sha3, method (*SHAKE) AppendBinary([]uint8) ([]uint8, error) #69982
    pkg crypto/sha3, method (*SHAKE) BlockSize() int #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

    func (s *SHAKE) AppendBinary(b []byte) ([]byte, error) { b, err := s.d.AppendBinary(b) if err != nil { return nil, err } b = append(b, s.initBlock...) return b, nil } func (s *SHAKE) UnmarshalBinary(b []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...
    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