- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Encapsulate (0.18 sec)
-
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) #75300Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 19:57:52 UTC 2025 - 11.5K bytes - Viewed (0) -
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) -
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome)); } } } } /** A guard that encapsulates a simple, mutable boolean flag. */ static class FlagGuard extends Monitor.Guard { private boolean satisfied; protected FlagGuard(Monitor monitor) { super(monitor); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 21:00:51 UTC 2025 - 27.1K bytes - Viewed (0)