mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-06-11 00:26:42 +00:00
Merge pull request #674 from cheme/master
Fix parsing of revocation subkey fingerprint
This commit is contained in:
commit
7dcc74b295
@ -446,7 +446,7 @@ Signature.prototype.read_sub_packet = function (bytes) {
|
||||
// fingerprint)
|
||||
this.revocationKeyClass = bytes[mypos++];
|
||||
this.revocationKeyAlgorithm = bytes[mypos++];
|
||||
this.revocationKeyFingerprint = bytes.subarray(mypos, 20);
|
||||
this.revocationKeyFingerprint = bytes.subarray(mypos, mypos + 20);
|
||||
break;
|
||||
|
||||
case 16:
|
||||
|
Loading…
x
Reference in New Issue
Block a user