mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-06-22 14:12:33 +00:00
Fix parsing of revocation subkey fingerprint
This commit is contained in:
parent
66f9faaa63
commit
e257e7a570
@ -446,7 +446,7 @@ Signature.prototype.read_sub_packet = function (bytes) {
|
|||||||
// fingerprint)
|
// fingerprint)
|
||||||
this.revocationKeyClass = bytes[mypos++];
|
this.revocationKeyClass = bytes[mypos++];
|
||||||
this.revocationKeyAlgorithm = bytes[mypos++];
|
this.revocationKeyAlgorithm = bytes[mypos++];
|
||||||
this.revocationKeyFingerprint = bytes.subarray(mypos, 20);
|
this.revocationKeyFingerprint = bytes.subarray(mypos, mypos + 20);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 16:
|
case 16:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user