[raknet] Implement DataBlockEncryptor ctor

This commit is contained in:
RD42 2023-11-25 23:55:55 +08:00
parent fe3f39d3a7
commit b7d5a12268
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// TODO: Implement DataBlockEncryptor.cpp
#include "DataBlockEncryptor.h"
DataBlockEncryptor::DataBlockEncryptor()
{
keySet = false;
}

View File

@ -0,0 +1,19 @@
// 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