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…
Reference in New Issue
Block a user