- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for UnmarshalBinary (0.1 sec)
-
api/go1.22.txt
pkg math/rand/v2, method (*ChaCha8) Uint64() uint64 #61716 pkg math/rand/v2, method (*ChaCha8) UnmarshalBinary([]uint8) error #61716 pkg math/rand/v2, method (*PCG) MarshalBinary() ([]uint8, error) #61716 pkg math/rand/v2, method (*PCG) Seed(uint64, uint64) #61716 pkg math/rand/v2, method (*PCG) Uint64() uint64 #61716 pkg math/rand/v2, method (*PCG) UnmarshalBinary([]uint8) error #61716 pkg math/rand/v2, method (*Rand) ExpFloat64() float64 #61716
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 24 20:54:27 UTC 2024 - 7.7K bytes - Viewed (0) -
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) -
api/go1.23.txt
pkg crypto/tls, type QUICSessionTicketOptions struct, Extra [][]uint8 #63691 pkg crypto/x509, func ParseOID(string) (OID, error) #66249 pkg crypto/x509, method (*OID) UnmarshalBinary([]uint8) error #66249 pkg crypto/x509, method (*OID) UnmarshalText([]uint8) error #66249 pkg crypto/x509, method (OID) MarshalBinary() ([]uint8, error) #66249 pkg crypto/x509, method (OID) MarshalText() ([]uint8, error) #66249
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 25 17:08:08 UTC 2024 - 10.1K bytes - Viewed (0) -
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)