encrypt the remaining bytes in the buffer
takes one byte and stores it in a buffer. Only if the buffer is full it gets encrypted and the cipher text gets written to output.
encrypt or decrypt byte array
buffer for incomplete blocks
where the next byte get added to the buffer (i.e. buf[bufOff++] = newByte)
the underlying block cipher
BufferedBlockCipher!AES) ecbEncryption; BufferedBlockCipher!(CTR!AES, true) ctrEncryption;
See Implementation