stream static method

Uint8List stream(
  1. int clen,
  2. Uint8List nonce,
  3. Uint8List key
)

Generates pseudo random bytes for given nonce and secret key.

Implementation

static Uint8List stream(int clen, Uint8List nonce, Uint8List key) =>
    Sodium.cryptoStream(clen, nonce, key);