-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbasic.js
25 lines (24 loc) · 857 Bytes
/
basic.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var keygen = require('../');
describe('basic', function () {
it('generates', function (done) {
keygen(function (err, result) {
assert.ifError(err);
assert(result.private.match(/^\-\-\-\-\-BEGIN RSA PRIVATE KEY\-\-\-\-\-\n/));
assert(result.public.match(/^ssh\-rsa /));
assert(result.fingerprint.length);
assert(result.randomart.length);
done();
});
});
it('encrypts', function (done) {
keygen({password: 'blahblahblah'}, function (err, result) {
assert.ifError(err);
assert(result.private.match(/^\-\-\-\-\-BEGIN RSA PRIVATE KEY\-\-\-\-\-\n/));
assert(result.private.match(/Proc-Type: 4,ENCRYPTED\nDEK-Info: AES-128-CBC/));
assert(result.public.match(/^ssh\-rsa /));
assert(result.fingerprint.length);
assert(result.randomart.length);
done();
});
});
});