mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08: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
|