encryptStream method

CipherStream encryptStream(
  1. List<int> iv
)

A streaming encryptor: call CipherStream.update repeatedly, then CipherStream.finish. Counter state carries across calls, so the concatenated output equals encrypt of the concatenated input.

Implementation

CipherStream encryptStream(List<int> iv) => CipherStream._(this, iv, true);