sha3_224 function

List<int> sha3_224(
  1. List<int> inputBytes
)

Implementation

List<int> sha3_224(List<int> inputBytes) {
  return _Keccak(1152, 448, inputBytes, 0x06, 224 ~/ 8);
}