verify static method

Future<bool> verify(
  1. List<int> signature,
  2. List<int> message,
  3. List<int> publicKey
)

Implementation

static Future<bool> verify(
    List<int> signature, List<int> message, List<int> publicKey) {
  return ed25519.Ed25519.checkvalid(Crypto._ed25519HashFunc,
      signature as Uint8List, message as Uint8List, publicKey as Uint8List);
}