SA-MP/raknet/DataBlockEncryptor.h

20 lines
261 B
C
Raw Normal View History

// 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