verifyHash static method

bool verifyHash(
  1. Uint8List messageHash,
  2. EdDSASignature signature,
  3. Uint8List publicKey
)

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