Crypto: Removed unused member, fixed gcc warning.
This commit is contained in:
parent
a96ea33b64
commit
cc032995bd
@ -308,8 +308,8 @@ void cPublicKey::InitRnd(void)
|
|||||||
// cAESCFBDecryptor:
|
// cAESCFBDecryptor:
|
||||||
|
|
||||||
cAESCFBDecryptor::cAESCFBDecryptor(void) :
|
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::cAESCFBEncryptor(void) :
|
cAESCFBEncryptor::cAESCFBEncryptor(void) :
|
||||||
m_IsValid(false),
|
m_IVOffset(0),
|
||||||
m_IVOffset(0)
|
m_IsValid(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,8 +132,6 @@ protected:
|
|||||||
class cAESCFBEncryptor
|
class cAESCFBEncryptor
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Byte test;
|
|
||||||
|
|
||||||
cAESCFBEncryptor(void);
|
cAESCFBEncryptor(void);
|
||||||
~cAESCFBEncryptor();
|
~cAESCFBEncryptor();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user