%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Flags: --tls-min-v1.0 'use strict'; const common = require('../common'); const { readKey } = require('../common/fixtures'); if (!common.hasCrypto) common.skip('missing crypto'); const https = require('https'); const { SSL_OP_NO_TICKET } = require('crypto').constants; const options = { key: readKey('agent1-key.pem'), cert: readKey('agent1-cert.pem'), secureOptions: SSL_OP_NO_TICKET, ciphers: 'RSA@SECLEVEL=0' }; // Create TLS1.2 server https.createServer(options, function(req, res) { res.end('ohai'); }).listen(0, function() { first(this); }); // Do request and let agent cache the session function first(server) { const port = server.address().port; const req = https.request({ port: port, rejectUnauthorized: false }, function(res) { res.resume(); server.close(function() { faultyServer(port); }); }); req.end(); } // Create TLS1 server function faultyServer(port) { options.secureProtocol = 'TLSv1_method'; https.createServer(options, function(req, res) { res.end('hello faulty'); }).listen(port, function() { second(this); }); } // Attempt to request using cached session function second(server, session) { const req = https.request({ port: server.address().port, rejectUnauthorized: false }, function(res) { res.resume(); }); // Although we have a TLS 1.2 session to offer to the TLS 1.0 server, // connection to the TLS 1.0 server should work. req.on('response', common.mustCall(function(res) { // The test is now complete for OpenSSL 1.1.0. server.close(); })); req.end(); }