From: pohsingwu Date: Wed, 24 Jul 2024 04:54:40 +0000 (+0800) Subject: Fix typo in mk-fipsmodule-cnf.pl X-Git-Tag: openssl-3.4.0-alpha1~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c6e11495975a4eda4cc5886080afed6203711ac;p=thirdparty%2Fopenssl.git Fix typo in mk-fipsmodule-cnf.pl Reviewed-by: Shane Lontis Reviewed-by: Tom Cosgrove Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/24977) --- diff --git a/util/mk-fipsmodule-cnf.pl b/util/mk-fipsmodule-cnf.pl index 070626a4f98..b6a49382bdb 100644 --- a/util/mk-fipsmodule-cnf.pl +++ b/util/mk-fipsmodule-cnf.pl @@ -50,9 +50,9 @@ tls1-prf-ems-check = $ems_check drbg-no-trunc-md = $drgb_no_trunc_dgst module-mac = $module_mac hkdf-digest-check = $kdf_digest_check -tls13-kdf-digest-check = $kd_digest_check +tls13-kdf-digest-check = $kdf_digest_check tls1-prf-digest-check = $kdf_digest_check -sshkdf-digest-check = $k_digest_check -sskdf-digest-check = $kd_digest_check -x963kdf-digest-check = $kdf__digest_check +sshkdf-digest-check = $kdf_digest_check +sskdf-digest-check = $kdf_digest_check +x963kdf-digest-check = $kdf_digest_check _____