Uint8List Hash(Uint8List m)

Returns digest message of SHA-512 hash function. Digest message is result of hashing message m.

Hash(new Uint8List(8)); // 27, 116, ..., 82, 196, 47, 27

Source

Uint8List Hash(Uint8List m) => new Digest('SHA-512').process(m);