Only store newly created signatures as valid in the non-streaming case

When streaming, we're not actually sure yet that signing won't fail.
This commit is contained in:
Daniel Huigens 2019-09-12 14:01:34 +02:00
parent 2877bac018
commit 91aa8b0d4c

View File

@ -190,13 +190,13 @@ Signature.prototype.sign = async function (key, data, detached = false, streamin
this.signature = stream.fromAsync(signed);
} else {
this.signature = await signed();
}
// Store the fact that this signature is valid, e.g. for when we call `await
// getLatestValidSignature(this.revocationSignatures, key, data)` later. Note
// that this only holds up if the key and data passed to verify are the same
// as the ones passed to sign.
this.verified = true;
// Store the fact that this signature is valid, e.g. for when we call `await
// getLatestValidSignature(this.revocationSignatures, key, data)` later.
// Note that this only holds up if the key and data passed to verify are the
// same as the ones passed to sign.
this.verified = true;
}
return true;
};