Cipher

Base symmetric cipher class

Members

Functions

initialized
bool initialized()
reset
void reset()

Reset cipher to its state immediately subsequent the last init.

update
uint update(const(void[]) input_, void[] output_)

Process a block of plaintext data from the input array and place it in the output array.

Properties

name
const(char)[] name [@property getter]

Static functions

invalid
void invalid(const(char[]) msg)

throw an InvalidArgument exception

Variables

DECRYPT
enum bool DECRYPT;
Undocumented in source.
ENCRYPT
enum bool ENCRYPT;
_encrypt
bool _encrypt;
Undocumented in source.
_initialized
bool _initialized;
Undocumented in source.

Meta