sha3_224Hex function

String sha3_224Hex(
  1. List<int> inputBytes
)

Computes a SHA3-224 digest and returns lowercase hexadecimal text.

Implementation

String sha3_224Hex(List<int> inputBytes) {
  return asHexString(sha3_224(inputBytes));
}