verify method

bool verify(
  1. List<int> digest,
  2. List<int> signature
)

Verifies the signature for the provided digest using the available key.

digest The digest to be verified. signature The signature to be verified.

Implementation

bool verify(List<int> digest, List<int> signature) {
  return _verifyEddsa(digest, signature);
}