RC4

Implementation of RC4 designed by Ron Rivest of RSA Security.

Constructors

this
this()
Undocumented in source.
this
this(bool encrypt, ubyte[] key)
Undocumented in source.

Members

Functions

init
void init(bool encrypt, ubyte[] key)
Undocumented in source. Be warned that the author may not have intended to support it.
reset
void reset()
Undocumented in source. Be warned that the author may not have intended to support it.
returnByte
ubyte returnByte(ubyte input)
Undocumented in source. Be warned that the author may not have intended to support it.
update
uint update(const(void[]) input_, void[] output_)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

name
const(char)[] name [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From StreamCipher

returnByte
ubyte returnByte(ubyte input)

Process one byte of input.

Meta