- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for DecapsulationKey768 (0.2 sec)
-
api/go1.24.txt
pkg crypto/mlkem, method (*DecapsulationKey1024) EncapsulationKey() *EncapsulationKey1024 #70122 pkg crypto/mlkem, method (*DecapsulationKey768) Bytes() []uint8 #70122 pkg crypto/mlkem, method (*DecapsulationKey768) Decapsulate([]uint8) ([]uint8, error) #70122 pkg crypto/mlkem, method (*DecapsulationKey768) EncapsulationKey() *EncapsulationKey768 #70122 pkg crypto/mlkem, method (*EncapsulationKey1024) Bytes() []uint8 #70122
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 17 21:28:29 UTC 2024 - 14.2K bytes - Viewed (0) -
api/go1.26.txt
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 pkg crypto/mlkem/mlkemtest, func Encapsulate1024(*mlkem.EncapsulationKey1024, []uint8) ([]uint8, []uint8, error) #73627
Registered: 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.0.0-c2097c7c.zip
generates a new decapsulation key, drawing random bytes from // a DRBG. The decapsulation key must be kept secret. func GenerateKey768() (*DecapsulationKey768, error) { // The actual logic is in a separate function to outline this allocation. dk := &DecapsulationKey768{} return generateKey(dk) } func generateKey(dk *DecapsulationKey768) (*DecapsulationKey768, error) { var d [32]byte drbg.Read(d[:]) var z [32]byte drbg.Read(z[:]) kemKeyGen(dk, &d, &z) fips140.PCT("ML-KEM PCT", func() error { return...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
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 GenerateKey768() (*DecapsulationKey768, error) { // The actual logic is in a separate function to outline this allocation. dk := &DecapsulationKey768{} return generateKey(dk) } func generateKey(dk *DecapsulationKey768) (*DecapsulationKey768, error) { fipsSelfTest() var d [32]byte drbg.Read(d[:]) var z [32]byte drbg.Read(z[:]) kemKeyGen(dk, &d, &z) fips140.PCT("ML-KEM PCT", func()...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)