shake_128 function

List<int> shake_128(
  1. List<int> inputBytes,
  2. int outputByteLength
)

Implementation

List<int> shake_128(List<int> inputBytes, int outputByteLength) {
  return _Keccak(1344, 256, inputBytes, 0x1F, outputByteLength);
}