Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DecapsulationKey1024 (0.12 sec)

  1. api/go1.26.txt

    pkg crypto/hpke, type PublicKey interface, unexported methods #75300
    pkg crypto/hpke, type Recipient struct #75300
    pkg crypto/hpke, type Sender struct #75300
    pkg crypto/mlkem, method (*DecapsulationKey1024) Encapsulator() crypto.Encapsulator #75300
    pkg crypto/mlkem, method (*DecapsulationKey768) Encapsulator() crypto.Encapsulator #75300
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 19:57:52 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0-c2097c7c.zip

    generates a new decapsulation key, drawing random bytes from // a DRBG. The decapsulation key must be kept secret. func GenerateKey1024() (*DecapsulationKey1024, error) { // The actual logic is in a separate function to outline this allocation. dk := &DecapsulationKey1024{} return generateKey1024(dk) } func generateKey1024(dk *DecapsulationKey1024) (*DecapsulationKey1024, error) { var d [32]byte drbg.Read(d[:]) var z [32]byte drbg.Read(z[:]) kemKeyGen1024(dk, &d, &z) fips140.PCT("ML-KEM PCT", func() error...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  3. lib/fips140/v1.1.0-rc1.zip

    generates a new decapsulation key, drawing random bytes from // a DRBG. The decapsulation key must be kept secret. func GenerateKey1024() (*DecapsulationKey1024, error) { // The actual logic is in a separate function to outline this allocation. dk := &DecapsulationKey1024{} return generateKey1024(dk) } func generateKey1024(dk *DecapsulationKey1024) (*DecapsulationKey1024, error) { fipsSelfTest() var d [32]byte drbg.Read(d[:]) var z [32]byte drbg.Read(z[:]) kemKeyGen1024(dk, &d, &z) fips140.PCT("ML-KEM PCT",...
    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