1
0
Fork 0

Crypto: Removed unused member, fixed gcc warning.

This commit is contained in:
madmaxoft 2014-02-04 23:25:06 +01:00
parent a96ea33b64
commit cc032995bd
2 changed files with 4 additions and 6 deletions

View File

@ -308,8 +308,8 @@ void cPublicKey::InitRnd(void)
// cAESCFBDecryptor:
cAESCFBDecryptor::cAESCFBDecryptor(void) :
m_IsValid(false),
m_IVOffset(0)
m_IVOffset(0),
m_IsValid(false)
{
}
@ -366,8 +366,8 @@ void cAESCFBDecryptor::ProcessData(Byte * a_DecryptedOut, const Byte * a_Encrypt
// cAESCFBEncryptor:
cAESCFBEncryptor::cAESCFBEncryptor(void) :
m_IsValid(false),
m_IVOffset(0)
m_IVOffset(0),
m_IsValid(false)
{
}

View File

@ -132,8 +132,6 @@ protected:
class cAESCFBEncryptor
{
public:
Byte test;
cAESCFBEncryptor(void);
~cAESCFBEncryptor();