IBlockCipher.processBlock

Process one block of input from the array in and write it to the out array.

interface IBlockCipher
@safe @nogc
uint
processBlock
nothrow
(
in ubyte[] input
,
ubyte[] output
)

Parameters

output
Type: ubyte[]

the slice the output data will be copied into.

Return Value

Type: uint

the number of bytes processed and produced.

Throws

IllegalStateException if the cipher isn't initialised.

Meta