- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for DecapsulationKey1024 (0.14 sec)
-
api/go1.24.txt
pkg crypto/mlkem, func NewEncapsulationKey768([]uint8) (*EncapsulationKey768, error) #70122 pkg crypto/mlkem, method (*DecapsulationKey1024) Bytes() []uint8 #70122 pkg crypto/mlkem, method (*DecapsulationKey1024) Decapsulate([]uint8) ([]uint8, error) #70122 pkg crypto/mlkem, method (*DecapsulationKey1024) EncapsulationKey() *EncapsulationKey1024 #70122 pkg crypto/mlkem, method (*DecapsulationKey768) Bytes() []uint8 #70122
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Dec 17 21:28:29 UTC 2024 - 14.2K bytes - Viewed (0) -
lib/fips140/v1.0.0.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) if err := fips140.PCT("ML-KEM PCT",...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)