sha3_384 function

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

Implementation

List<int> sha3_384(List<int> inputBytes) {
  return _Keccak(832, 768, inputBytes, 0x06, 384 ~/ 8);
}