public static bool EnsureLowS(BlockSignature blockSignature) { var signature = new ECDSASignature(blockSignature.Signature); if (!signature.IsLowS) { blockSignature.Signature = signature.MakeCanonical().ToDER(); } return(true); }
protected bool Equals(BlockSignature other) { return(Equals(signature, other.signature)); }