shake_256Hex function

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

Computes a SHAKE256 digest and returns lowercase hexadecimal text.

Implementation

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