ssh-keygen2
Version:
Automate ssh-keygen command for generating RSA keypairs
58 lines (54 loc) • 1.84 kB
JavaScript
var spawn = require('child_process').spawn
, path = require('path')
, tmpDir = require('os').tmpDir()
, idgen = require('idgen')
, fs = require('fs')
module.exports = function (opts, cb) {
if (typeof opts === 'function') {
cb = opts;
opts = {};
}
opts || (opts = {});
var stderr = ''
, stdout = ''
, location = opts.location || path.join(tmpDir, idgen())
, args = []
, ret = {}
if (opts.keep) ret.path = location;
if (opts.type) args.push('-t', opts.type);
if (opts.bits) args.push('-b', opts.bits);
args.push('-C', opts.comment || '');
args.push('-N', opts.passphrase || opts.password || '');
args.push('-f', location);
var proc = spawn('ssh-keygen', args, opts);
proc.stderr.on('data', function (data) {
stderr += data;
});
proc.stdout.on('data', function (data) {
stdout += data;
});
proc.on('exit', function () {
fs.readFile(location, {encoding: 'ascii'}, function (err, key) {
if (err && err.code !== 'ENOENT') return cb(err);
if (!key) return cb(new Error(stderr));
ret.private = key;
fs.readFile(location + '.pub', {encoding: 'ascii'}, function (err, key) {
if (err && err.code !== 'ENOENT') return cb(err);
if (!key) return cb(new Error(stderr));
ret.public = key;
var match = stdout.match(/fingerprint is:\n([^\n]+)\n/);
if (match) ret.fingerprint = match[1].trim();
var match = stdout.match(/randomart image is:\n([\s\S]+)/);
if (match) ret.randomart = match[1].trim();
if (opts.keep) return cb(null, ret);
fs.unlink(location, function (err) {
if (err) return cb(err);
fs.unlink(location + '.pub', function (err) {
if (err) return cb(err);
cb(null, ret);
});
});
});
});
});
};