ed448Verify function

bool ed448Verify(
  1. Uint8List publicKey,
  2. Uint8List message,
  3. Uint8List signature
)

Verifies an Ed448 signature for message.

Implementation

bool ed448Verify(
  Uint8List publicKey,
  Uint8List message,
  Uint8List signature,
) {
  return ed448.verify(publicKey, message, signature);
}