From: Viktor Dukhovni Date: Fri, 5 Dec 2025 03:35:18 +0000 (+1100) Subject: Fix ML-KEM/ML-DSA macro typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f22d746628c0c5d2371dd89652137fbbeed6ed6;p=thirdparty%2Fopenssl.git 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 Reviewed-by: Tomas Mraz (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 ddb0c7c726d..329685ae2db 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'], )); -}