BufferedBlockCipherWrapper

OOP API wrapper class for BufferedBlockCipher

Members

Functions

doFinal
uint doFinal(ubyte[] output)

encrypt the remaining bytes in the buffer

processByte
uint processByte(in ubyte b, ubyte[] output)

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.

processBytes
uint processBytes(in ubyte[] i, ubyte[] output)

Inherited Members

From IBufferedBlockCipher

processByte
uint processByte(in ubyte b, ubyte[] output)

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.

processBytes
uint processBytes(in ubyte[] i, ubyte[] output)
doFinal
uint doFinal(ubyte[] output)

encrypt the remaining bytes in the buffer

Meta