shake_128Hex function

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

Implementation

String shake_128Hex(List<int> inputBytes, int outputByteLength) {
  return asHexString(shake_128(inputBytes, outputByteLength));
}