diff --git a/test/fixtures/keys/Makefile b/test/fixtures/keys/Makefile index 1148e529cd9595..277734aa174562 100644 --- a/test/fixtures/keys/Makefile +++ b/test/fixtures/keys/Makefile @@ -81,6 +81,7 @@ agent1-cert.pem: agent1-csr.pem ca1-cert.pem ca1-key.pem agent1-pfx.pem: agent1-cert.pem agent1-key.pem ca1-cert.pem openssl pkcs12 -export \ + -descert \ -in agent1-cert.pem \ -inkey agent1-key.pem \ -certfile ca1-cert.pem \ diff --git a/test/fixtures/keys/agent1-pfx.pem b/test/fixtures/keys/agent1-pfx.pem index a36e746a72e06e..b0395eede9c251 100644 Binary files a/test/fixtures/keys/agent1-pfx.pem and b/test/fixtures/keys/agent1-pfx.pem differ diff --git a/test/parallel/test-tls-pfx-gh-5100-regr.js b/test/parallel/test-tls-pfx-gh-5100-regr.js index 29b8955c8758d8..865ac2ba3f299a 100644 --- a/test/parallel/test-tls-pfx-gh-5100-regr.js +++ b/test/parallel/test-tls-pfx-gh-5100-regr.js @@ -7,11 +7,6 @@ if (!common.hasCrypto) { return; } -if (common.hasFipsCrypto) { - console.log('1..0 # Skipped: PFX does not work in FIPS mode'); - return; -} - const assert = require('assert'); const tls = require('tls'); const fs = require('fs');