assertValidity method
Implementation
Signature assertValidity() {
if (Utilities.ge(r) && Utilities.ge(s)) {
return this;
}
throw Exception('0 < r or s < CURVE.n');
}
Signature assertValidity() {
if (Utilities.ge(r) && Utilities.ge(s)) {
return this;
}
throw Exception('0 < r or s < CURVE.n');
}