EncryptingSink constructor

EncryptingSink(
  1. BlockCipher _cipher,
  2. Sink<List<int>> _dest,
  3. Padding _padding
)

Implementation

EncryptingSink(this._cipher, this._dest, this._padding)
    : _lastPlaintext = Uint8List(_cipher.blockSize);