We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 213ae4f commit 8cee284Copy full SHA for 8cee284
test/pummel/test-dh-regr.js
@@ -29,7 +29,7 @@ const crypto = require('crypto');
29
30
// FIPS requires length >= 1024 but we use 256 in this test to keep it from
31
// taking too long and timing out in CI.
32
-const length = common.hasFipsCrypto ? 1024 : 256;
+const length = (common.hasFipsCrypto || common.hasOpenSSL3) ? 1024 : 256;
33
34
const p = crypto.createDiffieHellman(length).getPrime();
35
0 commit comments