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