pseudoRandomData method

List<int> pseudoRandomData(
  1. int outputLen
)

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);
}