verify static method

bool verify(
  1. Uint8List tag,
  2. Uint8List value,
  3. Uint8List key
)

Verifies that the tag is valid for given value and key.

Implementation

static bool verify(Uint8List tag, Uint8List value, Uint8List key) =>
    Sodium.cryptoOnetimeauthVerify(tag, value, key);