blake2b32Hash static method
Calculate the BLAKE2b-32 hash of the input data
Implementation
static List<int> blake2b32Hash(
List<int> data, {
List<int>? key,
List<int>? salt,
}) =>
_blake2bHash(data, blake2b32DigestSize, key: key, salt: salt);