verify method

bool verify(
  1. List<int> tag,
  2. List<int> message
)

Verify if the tag is derived from the message using this MAC.

Implementation

@pragma('vm:prefer-inline')
bool verify(List<int> tag, List<int> message) =>
    convert(message).isEqual(tag);