mirror of https://github.com/nodejs/node.git
18 lines
395 B
JavaScript
18 lines
395 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const tls = require('tls');
|
|
|
|
const net = require('net');
|
|
|
|
const socket = net.connect(443, 'www.example.org', common.mustCall(() => {
|
|
const secureSocket = tls.connect({socket: socket}, common.mustCall(() => {
|
|
secureSocket.destroy();
|
|
console.log('ok');
|
|
}));
|
|
}));
|