Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. lib/fips140/v1.1.0-rc1.zip

    || z" form. The seed must be uniformly random. func NewDecapsulationKey7(seed []byte) (*DecapsulationKey768, error) { // The actual logic is in a separate function to outline this allocation. dk := &DecapsulationKey768{} return newKeyFromSeed(dk, seed) } func newKeyFromSeed(dk *DecapsulationKey768, seed []byte) (*DecapsulationKey768, error) { if len(seed) != SeedSize { return nil, errors.New("mlkem: invalid seed length") } d := (*[32]byte)(seed[:32]) z := (*[32]byte)(seed[32:]) kemKeyGen(dk, d, z)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top