singleHash function

Uint8List singleHash(
  1. Uint8List buffer
)

Implementation

Uint8List singleHash(Uint8List buffer) {
  Uint8List tmp = SHA256Digest().process(buffer);
  return tmp;
}