verifyHash static method
Verifies an ECDSA signature hash
messageHash - The hash of the original message
signature - The signature to verify
publicKey - The public key to verify with
Returns true if signature is valid
Implementation
static bool verifyHash(
BigInt messageHash,
ECDSASignature signature,
ECPoint publicKey,
) {
return _verifyHash(messageHash, signature, publicKey);
}