pseudoRandomData method
Generate pseudo-random data using the PRF operation in Strobe.
Parameters:
outputLen: The length (in bytes) of the pseudo-random data to generate.
Implementation
List<int> pseudoRandomData(int outputLen) {
return operate(false, StrobeOperation.prf, List.empty(), outputLen, false);
}