binaryninja/personal/scc-docs/rc4_crypt.txt

17 lines
474 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
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]