by method
Get an MACHashBase instance initialized by a key.
Parameters:
keyThe key for MAC generation. Should not exceed 32 bytes.saltAn optional nonce. Must be exactly 8 bytes long.aadSecond optional nonce. Must be exactly 8 bytes long.
Implementation
@override
@pragma('vm:prefer-inline')
MACHashBase<Blake2sHash> by(
List<int> key, {
List<int>? salt,
List<int>? aad,
}) =>
Blake2s._(digestSize, key, salt, aad, name);