mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 01:27:14 +00:00

TLSv1.3 is still supported when explicitly configured, but it is not the default. PR-URL: https://github.com/nodejs/node/pull/26951 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
16 lines
510 B
JavaScript
16 lines
510 B
JavaScript
// Flags: --tls-min-v1.0 --tls-min-v1.1
|
|
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) common.skip('missing crypto');
|
|
|
|
// Check that `node --tls-v1.0` is supported, and overrides --tls-v1.1.
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
assert.strictEqual(tls.DEFAULT_MAX_VERSION, 'TLSv1.2');
|
|
assert.strictEqual(tls.DEFAULT_MIN_VERSION, 'TLSv1');
|
|
|
|
// Check the min-max version protocol versions against these CLI settings.
|
|
require('./test-tls-min-max-version.js');
|