Clear Coverity finding UNINIT_CTOR (CID 182771)

pull/462/head
Jeffrey Walton 2017-08-18 05:02:06 -04:00
parent 5ef2b814bc
commit b61953a7a7
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 0 deletions

3
aria.h
View File

@ -43,6 +43,9 @@ class ARIA : public ARIA_Info, public BlockCipherDocumentation
public:
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<ARIA_Info>
{
public:
Base() : m_rounds(0) {}
protected:
void UncheckedSetKey(const byte *key, unsigned int keylen, const NameValuePairs &params);
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;