sha3_256Hex function

String sha3_256Hex(
  1. List<int> inputBytes
)

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

Implementation

String sha3_256Hex(List<int> inputBytes) {
  return asHexString(sha3_256(inputBytes));
}