getTaggedHasher function
Implementation
Uint8List Function(Uint8List msg) getTaggedHasher(String tag) {
final hashedTag = sha256Hash(utf8.encode(tag));
return (Uint8List msg) => sha256Hash(
Uint8List.fromList([...hashedTag, ...hashedTag, ...msg]),
);
}