mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-12 00:43:58 +00:00
20 lines
261 B
C
20 lines
261 B
C
|
// TODO: Implement DataBlockEncryptor.h
|
||
|
|
||
|
#ifndef __DATA_BLOCK_ENCRYPTOR_H
|
||
|
#define __DATA_BLOCK_ENCRYPTOR_H
|
||
|
|
||
|
/// Encrypts and decrypts data blocks.
|
||
|
class DataBlockEncryptor
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
|
||
|
/// Constructor
|
||
|
DataBlockEncryptor();
|
||
|
|
||
|
protected:
|
||
|
bool keySet;
|
||
|
};
|
||
|
|
||
|
#endif
|