#include <Encryption.h>
Static Public Member Functions | |
| static void | Encrypt (void *data, int length, Key *key) |
| static void | Decrypt (void *data, int length, Key *key) |
Classes | |
| struct | Key |
| static void Encrypt | ( | void * | data, | |
| int | length, | |||
| Key * | key | |||
| ) | [static] |
Encrypt a portion of memory with a key.
| data | the pointer to the start of the memory | |
| length | the length of the memory in bytes | |
| key | the key to use |
| static void Decrypt | ( | void * | data, | |
| int | length, | |||
| Key * | key | |||
| ) | [static] |
Decrypt a portion of memory with a key.
| data | the pointer to the start of the memory | |
| length | the length of the memory in bytes | |
| key | the key to use |
1.5.3