sha3_512 function

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

Implementation

List<int> sha3_512(List<int> inputBytes) {
  return _Keccak(576, 1024, inputBytes, 0x06, 512 ~/ 8);
}