blakeHashToBinary static method

Uint8List blakeHashToBinary(
  1. String message
)

Blake hashes the message and returns the raw binary data.

Implementation

static Uint8List blakeHashToBinary(String message) {
  return Blake2bHash.hash(
    Uint8List.fromList(message.codeUnits),
    0,
    message.length,
  );
}