sha3_256Hex function

String sha3_256Hex(
  1. List<int> inputBytes
)

Implementation

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