node/test/disabled/test-tls-server.js

36 lines
997 B
JavaScript
Raw Normal View History

2010-12-02 05:00:04 +08:00
// Example of new TLS API. Test with:
//
// $> openssl s_client -connect localhost:12346 \
// -key test/fixtures/agent.key -cert test/fixtures/agent.crt
//
// $> openssl s_client -connect localhost:12346
2010-12-02 05:00:04 +08:00
//
var common = require('../common');
var tls = require('tls');
var fs = require('fs');
var join = require('path').join;
var key = fs.readFileSync(join(common.fixturesDir, 'agent.key')).toString();
var cert = fs.readFileSync(join(common.fixturesDir, 'agent.crt')).toString();
2010-12-02 05:00:04 +08:00
2010-12-04 09:07:09 +08:00
s = tls.Server({ key: key,
cert: cert,
ca: [],
requestCert: true,
rejectUnauthorized: true });
2010-12-02 05:00:04 +08:00
s.listen(common.PORT, function() {
console.log('TLS server on 127.0.0.1:%d', common.PORT);
2010-12-02 05:00:04 +08:00
});
s.on('authorized', function(c) {
console.log('authed connection');
c.end('bye authorized friend.\n');
2010-12-02 05:00:04 +08:00
});
s.on('unauthorized', function(c, e) {
console.log('unauthed connection: %s', e);
c.end('bye unauthorized person.\n');
2010-12-02 05:00:04 +08:00
});