Fix verifying one-pass signatures in the compat build (#968)
This was broken in 735d6d0
.
See babel/babel#10431.
This commit is contained in:
parent
a14b09c89b
commit
aa8d37a82c
|
@ -133,7 +133,7 @@ OnePassSignature.prototype.hash = Signature.prototype.hash;
|
|||
OnePassSignature.prototype.toHash = Signature.prototype.toHash;
|
||||
OnePassSignature.prototype.toSign = Signature.prototype.toSign;
|
||||
OnePassSignature.prototype.calculateTrailer = function(...args) {
|
||||
return stream.fromAsync(async () => (await this.correspondingSig).calculateTrailer(...args));
|
||||
return stream.fromAsync(async () => Signature.prototype.calculateTrailer.apply(await this.correspondingSig, args));
|
||||
};
|
||||
|
||||
OnePassSignature.prototype.verify = async function() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user