smime

2.0.1 • Public • Published

smime

Build Status Dependency Status devDependency Status

Node / io.js wrapper for OpenSSL S/MIME command.

Install

npm install smime

Usage

var smime = require('smime');
 
smime.sign({
  content: fs.createReadStream('/path/to/file/to/sign'),
  key: '/path/to/key.pem',
  cert: '/path/to/cert.pem'
}).then(function (res) {
  console.log(res); // {der, child}
});

smime.sign(options, [cb])

Sign a content using smime.

Options:

@param {object} options Options
@param {stream.Readable} options.content Content stream
@param {string} options.key Key path
@param {string} options.cert Cert path
@param {string} [options.password] Key password
@param {function} [cb] Optional callback

Result:

@returns {object} result Result
@returns {Buffer} result.der Der signature
@returns {ChildProcess} result.child Child process

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i smime

Weekly Downloads

15

Version

2.0.1

License

MIT

Last publish

Collaborators

  • neoziro