Also create issuer fingerprint subpacket for v4 keys (#1097)

Do not limit creation of signatures with issuer fingerprint subpacket to v5 keys.
This commit is contained in:
Roman Zechmeister 2020-05-11 21:45:04 +02:00 committed by GitHub
parent 2c6cbc4cb2
commit 1b91d428f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,13 +163,8 @@ Signature.prototype.sign = async function (key, data, detached = false, streamin
}
const arr = [new Uint8Array([this.version, signatureType, publicKeyAlgorithm, hashAlgorithm])];
if (key.version === 5) {
// We could also generate this subpacket for version 4 keys, but for
// now we don't.
this.issuerKeyVersion = key.version;
this.issuerFingerprint = key.getFingerprintBytes();
}
this.issuerKeyVersion = key.version;
this.issuerFingerprint = key.getFingerprintBytes();
this.issuerKeyId = key.getKeyId();
// Add hashed subpackets