Skip to content

Commit

Permalink
fix(oqs): corrected kem names for ML-KEM
Browse files Browse the repository at this point in the history
  • Loading branch information
Scarjit committed Apr 10, 2024
1 parent fbb4414 commit ba6ea0a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions oqs/src/kem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ implement_kems! {
("frodokem") FrodoKem976Shake: OQS_KEM_alg_frodokem_976_shake,
("frodokem") FrodoKem1344Aes: OQS_KEM_alg_frodokem_1344_aes,
("frodokem") FrodoKem1344Shake: OQS_KEM_alg_frodokem_1344_shake,
("ml_kem") MlKem512Ipd: OQS_KEM_alg_mlkem_512_ipd,
("ml_kem") MlKem768Ipd: OQS_KEM_alg_mlkem_768_ipd,
("ml_kem") MlKem1024Ipd: OQS_KEM_alg_mlkem_1024_ipd,
("ml_kem") MlKem512: OQS_KEM_alg_mlkem_512,
("ml_kem") MlKem768: OQS_KEM_alg_mlkem_768,
("ml_kem") MlKem1024: OQS_KEM_alg_mlkem_1024,
("ml_kem") MlKem512Ipd: OQS_KEM_alg_ml_kem_512_ipd,
("ml_kem") MlKem768Ipd: OQS_KEM_alg_ml_kem_768_ipd,
("ml_kem") MlKem1024Ipd: OQS_KEM_alg_ml_kem_1024_ipd,
("ml_kem") MlKem512: OQS_KEM_alg_ml_kem_512,
("ml_kem") MlKem768: OQS_KEM_alg_ml_kem_768,
("ml_kem") MlKem1024: OQS_KEM_alg_ml_kem_1024,
}

impl Algorithm {
Expand Down

0 comments on commit ba6ea0a

Please sign in to comment.