static fun verifyHashed(hash: Bytes32!, signature: Signature!, publicKey: PublicKey!): Boolean
(source)
Verifies the given ECDSA signature against the message bytes using the public key bytes.
hash
- Bytes32!: The keccak256 hash of the data to verify.
signature
- Signature!: The signature.
publicKey
- PublicKey!: The public key.
Return
Boolean: True if the verification is successful.
static fun verifyHashed(hash: ByteArray!, signature: Signature!, publicKey: PublicKey!): Boolean
(source)
Verifies the given ECDSA signature against the message bytes using the public key bytes.
hash
- ByteArray!: The keccak256 hash of the data to verify.
signature
- Signature!: The signature.
publicKey
- PublicKey!: The public key.
Return
Boolean: True if the verification is successful.