sha224Hash function

Uint8List sha224Hash(
  1. ByteBuffer buf
)

Implementation

Uint8List sha224Hash(ByteBuffer buf) {
  return SHA224().update(buf.asUint8List()).toU8a();
}