1.1.1 • Published 8 years ago

read-ssl v1.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

read-ssl

A simple node library to read SSL certificate files according to a basic convention.

Usage

var readSsl = require('read-ssl');

readSsl({
  root: __dirname,
  key: 'relative/path/to/file.key',
  cert: 'relative/path/to/file.cert',
  ca: 'relative/path/to/ca.pem'
  //
  // `ca` can alternatively be an Array
  //
  ca: [
    'relative/path/to/ca.pem'
    'relative/path/to/intermediate-ca.pem'
  ]
}, function (err, res) {
  assert(Buffer.isBuffer(res.key));
  assert(Buffer.isBuffer(res.cert));
  assert(Buffer.isBuffer(res.ca));
});

readSsl can also be used to create the crypto context necessary for performing operations like responding appropriately to an SNICallback:

var readSsl = require('read-ssl');

readSsl.createContext({
  root: __dirname,
  key: 'relative/path/to/file.key',
  cert: 'relative/path/to/file.cert'
}, function (err, context) {
  //
  // Context is the result of
  // require('crypto').createCredentials().context
  // with the result of a `readSsl` call.
  //
});
AUTHOR: Charlie Robbins
LICENSE: MIT
1.1.1

8 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago