Computes a SHAKE128 digest and returns lowercase hexadecimal text.
String shake_128Hex(List<int> inputBytes, int outputByteLength) { return asHexString(shake_128(inputBytes, outputByteLength)); }