Clear Coverity finding UNINIT_CTOR (CID 182771)
parent
5ef2b814bc
commit
b61953a7a7
3
aria.h
3
aria.h
|
|
@ -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 ¶ms);
|
||||
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue