sha224 function

String sha224(
  1. Uint8List bytes
)

Returns SHA-224 hash

Implementation

String sha224(Uint8List bytes) {
  var digest = crypto_crypto.sha224.convert(bytes);
  return digest.toString();
}