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