verify method
Verifies the signature for the provided digest using the available key.
This method verifies the signature of the provided digest using either EDDSA algorithms,
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);
}