SICStreamCipher constructor

SICStreamCipher(
  1. BlockCipher underlyingCipher
)

Implementation

SICStreamCipher(this.underlyingCipher) {
  _iv = Uint8List(underlyingCipher.blockSize);
  _counter = Uint8List(underlyingCipher.blockSize);
  _counterOut = Uint8List(underlyingCipher.blockSize);
}