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