Node / io.js wrapper for OpenSSL S/MIME command.
npm install smime
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}
});
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
MIT