Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newKeyFromSeed1024 (0.09 sec)

  1. lib/fips140/v1.0.0.zip

    form. The seed must be uniformly random. func NewDecapsulationKey1(seed []byte) (*DecapsulationKey1024, error) { // The actual logic is in a separate function to outline this allocation. dk := &DecapsulationKey1024{} return newKeyFromSeed1024(dk, seed) } func newKeyFromSeed1024(dk *DecapsulationKey1024, seed []byte) (*DecapsulationKey1024, error) { if len(seed) != SeedSize { return nil, errors.New("mlkem: invalid seed length") } d := (*[32]byte)(seed[:32]) z := (*[32]byte)(seed[32:]) kemKeyGen1024(dk,...
    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