mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 20:09:32 +00:00

The existing secureProtocol option only allows setting the allowed protocol to a specific version, or setting it to "all supported versions". It also used obscure strings based on OpenSSL C API functions. Directly setting the min or max is easier to use and explain. PR-URL: https://github.com/nodejs/node/pull/24405 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
16 lines
467 B
JavaScript
16 lines
467 B
JavaScript
// Flags: --tls-v1.1
|
|
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) common.skip('missing crypto');
|
|
|
|
// Check that node `--tls-v1.1` is supported.
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
assert.strictEqual(tls.DEFAULT_MAX_VERSION, 'TLSv1.2');
|
|
assert.strictEqual(tls.DEFAULT_MIN_VERSION, 'TLSv1.1');
|
|
|
|
// Check the min-max version protocol versions against these CLI settings.
|
|
require('./test-tls-min-max-version.js');
|