Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Decapsulate (0.06 sec)

  1. api/go1.26.txt

    pkg crypto, type Decapsulator interface { Decapsulate, Encapsulator } #75300
    pkg crypto, type Decapsulator interface, Decapsulate([]uint8) ([]uint8, error) #75300
    pkg crypto, type Decapsulator interface, Encapsulator() Encapsulator #75300
    pkg crypto, type Encapsulator interface { Bytes, Encapsulate } #75300
    pkg crypto, type Encapsulator interface, Bytes() []uint8 #75300
    pkg crypto, type Encapsulator interface, Encapsulate() ([]uint8, []uint8) #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.1.0-rc1.zip

    *DecapsulationKey1024) error { ek := dk.EncapsulationKey() K, c := ek.Encapsulate() K1, err := dk.Decapsulate(c) if err != nil { return err } if subtle.ConstantTimeCompare(K, K1) != 1 { return errors.New("mlkem: PCT failed") } return nil } // Encapsulate generates a shared key and an associated ciphertext from an // encapsulation key, drawing random bytes from a DRBG. // // The shared key must be kept secret. func (ek *EncapsulationKey1024) Encapsulate() (sharedKey, ciphertext []byte) { // The actual logic is...
    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