verifyHash static method

bool verifyHash(
  1. BigInt messageHash,
  2. ECDSASignature signature,
  3. ECPoint publicKey
)

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);
}