We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18370e6 commit b5c2a44Copy full SHA for b5c2a44
test/parallel/test-crypto-sec-level.js
@@ -0,0 +1,10 @@
1
+'use strict';
2
+const common = require('../common');
3
+if (!common.hasCrypto)
4
+ common.skip('missing crypto');
5
+
6
+const assert = require('assert');
7
+const crypto = require('crypto');
8
9
+const secLevel = crypto.getOpenSSLSecLevel();
10
+assert.ok(secLevel >= 0 && secLevel <= 5);
0 commit comments