BufferedBlockCipher.processBytes

encrypt or decrypt byte array

struct BufferedBlockCipher(Cipher, bool permitPartialBlock = false)
@nogc nothrow
uint
processBytes
(
in ubyte[] i
,
ubyte[] output
)
if ()

Parameters

i ubyte[]

the bytes to encrypt

output ubyte[]

the output buffer

Return Value

Type: uint

the number of bytes written to output. Will be 0 or BLOCKSIZE of underlying cipher.

Meta