reformatKey: Key not decrypted error | #602

This commit is contained in:
Tom James Holub 2017-11-25 12:24:44 +08:00
parent bee9928e54
commit d0d0874268
2 changed files with 15 additions and 0 deletions

View File

@ -1180,6 +1180,10 @@ export function reformat(options) {
throw new Error('Only RSA Encrypt or Sign supported');
}
if (!options.privateKey.decrypt()) {
throw new Error('Key not decrypted');
}
if (!options.passphrase) { // Key without passphrase is unlocked by definition
options.unlocked = true;
}

View File

@ -1150,6 +1150,17 @@ describe('Key', function() {
}).catch(done);
}).catch(done);
});
it('Throw user friendly error when reformatting encrypted key', function(done) {
openpgp.generateKey({numBits: 1024, userIds: 'test1 <a@b.com>', passphrase: '1234'}).then(function(original) {
openpgp.reformatKey({privateKey: original.key, userIds: 'test2 <b@a.com>', passphrase: '1234'}).then(function(newKey) {
assert.fail('reformatKey should result in error when key not decrypted');
done();
}).catch(function(error) {
expect(error.message).to.equal('Error reformatting keypair: Key not decrypted');
done();
});
}).catch(done);
});
it('Find a valid subkey binding signature among many invalid ones', function(done) {
var k = openpgp.key.readArmored(valid_binding_sig_among_many_expired_sigs_pub).keys[0];