verifyHash static method
Verifies an EdDSA 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(
Uint8List messageHash,
EdDSASignature signature,
Uint8List publicKey,
) {
return _verifyHash(messageHash, signature, publicKey);
}