summaryrefslogtreecommitdiff
path: root/aria.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-08-18 05:02:06 -0400
committerJeffrey Walton <noloader@gmail.com>2017-08-18 05:02:06 -0400
commitb61953a7a7f7a55849203f81ca8ae39c5c04ab8f (patch)
tree3958af3b36f9ccb00f19ae2f7c7d0d97b0da9254 /aria.h
parent5ef2b814bc842eed6923d29591dbc4a962c104c6 (diff)
downloadcryptopp-git-b61953a7a7f7a55849203f81ca8ae39c5c04ab8f.tar.gz
Clear Coverity finding UNINIT_CTOR (CID 182771)
Diffstat (limited to 'aria.h')
-rw-r--r--aria.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/aria.h b/aria.h
index 88811b49..58b5169d 100644
--- a/aria.h
+++ b/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 &params);
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;