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 050c56a commit 2abbd81Copy full SHA for 2abbd81
lib/internal/crypto/webidl.js
@@ -785,7 +785,7 @@ converters.ContextParams = createDictionaryConverter(
785
let { 0: major, 1: minor } = process.versions.openssl.split('.');
786
major = NumberParseInt(major, 10);
787
minor = NumberParseInt(minor, 10);
788
- if (major >= 4 || (major === 3 && minor >= 2)) {
+ if (major > 3 || (major === 3 && minor >= 2)) {
789
this.validator = undefined;
790
} else {
791
this.validator = validateZeroLength('ContextParams.context');
0 commit comments