StreamCipherAsBlockCipher constructor

StreamCipherAsBlockCipher(
  1. int blockSize,
  2. StreamCipher streamCipher
)

Create a BlockCipher from streamCipher simulating the given blockSize

Implementation

StreamCipherAsBlockCipher(this.blockSize, this.streamCipher);