Allow key.validate() to pass if it has a GNU dummy primary key

A valid signing subkey is required, in this case.
This commit is contained in:
Daniel Huigens 2020-04-22 22:04:26 +02:00
parent 8823603396
commit 63b6d215e3

View File

@ -2846,7 +2846,8 @@ describe('Key', function() {
it('clearPrivateParams() - detect that private key parameters were removed', async function() {
const key = await openpgp.key.readArmored(priv_key_rsa);
await key.decrypt('hello world');
const params = key.primaryKey.params;
const signingKeyPacket = key.subKeys[0].keyPacket;
const params = signingKeyPacket.params;
await key.clearPrivateParams();
key.primaryKey.isEncrypted = false;
key.primaryKey.params = params;
@ -2858,7 +2859,8 @@ describe('Key', function() {
it('clearPrivateParams() - detect that private key parameters were zeroed out', async function() {
const { keys: [key] } = await openpgp.key.readArmored(priv_key_rsa);
await key.decrypt('hello world');
const params = key.primaryKey.params.slice();
const signingKeyPacket = key.subKeys[0].keyPacket;
const params = signingKeyPacket.params.slice();
await key.clearPrivateParams();
key.primaryKey.isEncrypted = false;
key.primaryKey.params = params;