shake_256 function

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

Implementation

List<int> shake_256(List<int> inputBytes, int outputByteLength) {
  return _Keccak(1088, 512, inputBytes, 0x1F, outputByteLength);
}