getSHA512256 function

Uint8List getSHA512256(
  1. Uint8List input
)

Implementation

Uint8List getSHA512256(Uint8List input) {
  final hash = sha512256.convert(input);
  return hash.bytes.toUint8List();
}