dh: add extra argument to ossl_dh_check_pairwise

This commit is contained in:
Pauli 2025-07-30 16:50:03 +10:00
parent 234ef5009c
commit ba3775a4b5
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ int ossl_dh_key_fromdata(DH *dh, const OSSL_PARAM params[], int include_private)
#ifdef FIPS_MODULE
if (pub_key != NULL && priv_key != NULL)
if (ossl_dh_check_pairwise(dh) == 0)
if (ossl_dh_check_pairwise(dh, 0) == 0)
return 0;
#endif