isNormalized method
Returns true if s is in lower-s form, false otherwise.
Implementation
bool isNormalized(ECDomainParameters curveParams) {
return !(s.compareTo(curveParams.n >> 1) > 0);
}
Returns true if s is in lower-s form, false otherwise.
bool isNormalized(ECDomainParameters curveParams) {
return !(s.compareTo(curveParams.n >> 1) > 0);
}