diff --git a/src/mlkem.rs b/src/mlkem.rs index 8326f38..d5cce7c 100644 --- a/src/mlkem.rs +++ b/src/mlkem.rs @@ -83,7 +83,7 @@ pub fn mlkem_keygen() -> (MLKEMPrivKey, MLKEMPubKey) { } pub fn mlkem_encap(pk: &MLKEMPubKey) -> (MLKEMCiphertext, MLKEMSharedKey) { - let ct = MLKEMCiphertext(SharedPtr::new(1184).unwrap()); + let ct = MLKEMCiphertext(SharedPtr::new(1088).unwrap()); let ss = MLKEMSharedKey(SharedPtr::new(32).unwrap()); let mut agent = MLKEMAGENT.lock().unwrap();