Verify an ECDSA signature with secp256k1.
The message is hashed with double SHA-256 before verification (Bitcoin standard).
33-byte compressed secp256k1 public key
64-byte compact signature (r || s format)
Original message that was signed
true if signature is valid, false if signature verification fails
true
false
If public key is not 33 bytes or signature is not 64 bytes
Verify an ECDSA signature with secp256k1.
The message is hashed with double SHA-256 before verification (Bitcoin standard).