summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-pfx-gh-5100-regr.js
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@iij.ad.jp>2016-02-09 10:49:37 +0900
committerShigeki Ohtsu <ohtsu@iij.ad.jp>2016-02-09 13:05:48 +0900
commitdccccbbbe7ee16544a00b6aee71ddba8c1ca9a84 (patch)
tree97425b2fa9fb6931699e0cfebd8a7f8baf887ab3 /test/parallel/test-tls-pfx-gh-5100-regr.js
parentc64d051cf6a17be6b2c08e795c897516b78d4190 (diff)
downloadnode-new-dccccbbbe7ee16544a00b6aee71ddba8c1ca9a84.tar.gz
test: enable to work pkcs12 test in FIPS mode
The pfx file created by pkcs12 command of openssl causes an error in FIPS mode because its certificate is encrypted with RC2 by default. Adding `-descert` option resolves the error. Fix: https://github.com/nodejs/node/pull/5144 Fix: https://github.com/nodejs/node/pull/5109 PR-URL: https://github.com/nodejs/node/pull/5150 Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'test/parallel/test-tls-pfx-gh-5100-regr.js')
-rw-r--r--test/parallel/test-tls-pfx-gh-5100-regr.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/parallel/test-tls-pfx-gh-5100-regr.js b/test/parallel/test-tls-pfx-gh-5100-regr.js
index 29b8955c87..865ac2ba3f 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');