hash static method

Uint8List hash(
  1. Uint8List value,
  2. Uint8List key
)
override

Computes a fixed-size fingerprint for given value and key.

Implementation

static Uint8List hash(Uint8List value, Uint8List key) =>
    Sodium.cryptoShorthash(value, key);