17 lines
474 B
Plaintext
17 lines
474 B
Plaintext
rc4_crypt
|
|
=========
|
|
:title: Shellcode Compiler Runtime
|
|
|
|
---------------------------------------------
|
|
void rc4_crypt(rc4_state_t* state, void* data, size_t len);
|
|
---------------------------------------------
|
|
|
|
Encrypts or decrypts `len` bytes pointed to by `data`. The `state` structure can be initialized with
|
|
the link:rc4_init.html[rc4_init] function.
|
|
|
|
See also
|
|
--------
|
|
link:rc4_overview.html[RC4 overview],
|
|
link:rc4_init.html[rc4_init],
|
|
link:rc4_output.html[rc4_output]
|