1
0
EQ2Emu/docs/code/Crypto.md
2025-05-06 09:54:48 -04:00

20 lines
358 B
Markdown

# File: `Crypto.h`
## Classes
- `Crypto`
## Functions
- `void RC4Encrypt(uchar* text, int32 size);`
- `void RC4Decrypt(uchar* text, int32 size);`
- `int64 getRC4Key() { return rc4_key; }`
- `void setRC4Key(int64 key) {`
- `bool isEncrypted(){ return encrypted; }`
- `void setEncrypted(bool in_val){ encrypted = in_val; }`
## Notable Comments
- /*
- */