verify method

  1. @override
bool verify(
  1. List<int> message,
  2. List<int> signature
)
override

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

This method verifies the signature of the provided digest using either EDDSA algorithms,

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

Implementation

@override
bool verify(List<int> message, List<int> signature) {
  return _verifier.verify(message, signature);
}