Merge pull request #46 from Zireael-N/master
Remove implementation of ResizeBuffer() from headerspull/63/head
commit
47571eebe8
12
modes.cpp
12
modes.cpp
|
|
@ -149,6 +149,12 @@ void BlockOrientedCipherModeBase::UncheckedSetKey(const byte *key, unsigned int
|
|||
}
|
||||
}
|
||||
|
||||
void BlockOrientedCipherModeBase::ResizeBuffers()
|
||||
{
|
||||
CipherModeBase::ResizeBuffers();
|
||||
m_buffer.New(BlockSize());
|
||||
}
|
||||
|
||||
void ECB_OneWay::ProcessData(byte *outString, const byte *inString, size_t length)
|
||||
{
|
||||
CRYPTOPP_ASSERT(length%BlockSize()==0);
|
||||
|
|
@ -243,6 +249,12 @@ void CBC_CTS_Decryption::ProcessLastBlock(byte *outString, const byte *inString,
|
|||
}
|
||||
}
|
||||
|
||||
void CBC_Decryption::ResizeBuffers()
|
||||
{
|
||||
BlockOrientedCipherModeBase::ResizeBuffers();
|
||||
m_temp.New(BlockSize());
|
||||
}
|
||||
|
||||
NAMESPACE_END
|
||||
|
||||
#endif
|
||||
|
|
|
|||
12
modes.h
12
modes.h
|
|
@ -170,11 +170,7 @@ public:
|
|||
|
||||
protected:
|
||||
bool RequireAlignedInput() const {return true;}
|
||||
void ResizeBuffers()
|
||||
{
|
||||
CipherModeBase::ResizeBuffers();
|
||||
m_buffer.New(BlockSize());
|
||||
}
|
||||
void ResizeBuffers();
|
||||
|
||||
SecByteBlock m_buffer;
|
||||
};
|
||||
|
|
@ -229,11 +225,7 @@ public:
|
|||
void ProcessData(byte *outString, const byte *inString, size_t length);
|
||||
|
||||
protected:
|
||||
void ResizeBuffers()
|
||||
{
|
||||
BlockOrientedCipherModeBase::ResizeBuffers();
|
||||
m_temp.New(BlockSize());
|
||||
}
|
||||
void ResizeBuffers();
|
||||
AlignedSecByteBlock m_temp;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue