Commit 0f22d74662 for openssl.org
commit 0f22d746628c0c5d2371dd89652137fbbeed6ed6
Author: Viktor Dukhovni <openssl-users@dukhovni.org>
Date: Fri Dec 5 14:35:18 2025 +1100
Fix ML-KEM/ML-DSA macro typo
This is largely cosmetic, since the macro expands to "seed" either way,
but it is best to avoid this type of error.
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/29313)
diff --git a/providers/implementations/keymgmt/ml_kem_kmgmt.inc.in b/providers/implementations/keymgmt/ml_kem_kmgmt.inc.in
index ddb0c7c726..329685ae2d 100644
--- a/providers/implementations/keymgmt/ml_kem_kmgmt.inc.in
+++ b/providers/implementations/keymgmt/ml_kem_kmgmt.inc.in
@@ -35,6 +35,6 @@ use OpenSSL::paramnames qw(produce_param_decoder);
)); -}
{- produce_param_decoder('ml_kem_gen_set_params',
- (['OSSL_PKEY_PARAM_ML_DSA_SEED', 'seed', 'octet_string'],
+ (['OSSL_PKEY_PARAM_ML_KEM_SEED', 'seed', 'octet_string'],
['OSSL_PKEY_PARAM_PROPERTIES', 'propq', 'utf8_string'],
)); -}