Skip to content

Commit 8856979

Browse files
committed
src: fix FIPS section in Sign::SignFinal
Currently, while FIPS is not supported yet for this release there might be an option to dynamically link against a FIPS compatible OpenSSL version. This commit fixes the compiler errors.
1 parent 3397f29 commit 8856979

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/node_crypto.cc

+9-4
Original file line numberDiff line numberDiff line change
@@ -4505,9 +4505,14 @@ Sign::SignResult Sign::SignFinal(
45054505

45064506
#ifdef NODE_FIPS_MODE
45074507
/* Validate DSA2 parameters from FIPS 186-4 */
4508-
if (FIPS_mode() && EVP_PKEY_DSA == pkey->type) {
4509-
size_t L = BN_num_bits(pkey->pkey.dsa->p);
4510-
size_t N = BN_num_bits(pkey->pkey.dsa->q);
4508+
if (FIPS_mode() && EVP_PKEY_DSA == EVP_PKEY_base_id(pkey.get())) {
4509+
DSA* dsa = EVP_PKEY_get0_DSA(pkey.get());
4510+
const BIGNUM* p;
4511+
DSA_get0_pqg(dsa, &p, nullptr, nullptr);
4512+
size_t L = BN_num_bits(p);
4513+
const BIGNUM* q;
4514+
DSA_get0_pqg(dsa, nullptr, &q, nullptr);
4515+
size_t N = BN_num_bits(q);
45114516
bool result = false;
45124517

45134518
if (L == 1024 && N == 160)
@@ -4520,7 +4525,7 @@ Sign::SignResult Sign::SignFinal(
45204525
result = true;
45214526

45224527
if (!result) {
4523-
return kSignPrivateKey;
4528+
return SignResult(kSignPrivateKey);
45244529
}
45254530
}
45264531
#endif // NODE_FIPS_MODE

0 commit comments

Comments
 (0)