shake_256Hex function

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

Implementation

String shake_256Hex(List<int> inputBytes, int outputByteLength) {
  return asHexString(shake_256(inputBytes, outputByteLength));
}