mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
26 lines
334 B
C++
26 lines
334 B
C++
// TODO: Implement TEABlockEncryptor.h
|
|
|
|
#ifndef __TEA_BLOCK_ENCRYPTOR_H
|
|
#define __TEA_BLOCK_ENCRYPTOR_H
|
|
|
|
#include "DataBlockEncryptor.h"
|
|
|
|
class TEABlockEncryptor :
|
|
public DataBlockEncryptor
|
|
{
|
|
|
|
public:
|
|
|
|
TEABlockEncryptor();
|
|
|
|
protected:
|
|
|
|
unsigned int initSum;
|
|
unsigned int initDelta;
|
|
|
|
static unsigned int initObsDelta;
|
|
|
|
};
|
|
|
|
#endif
|