From 01136e2c7be25cc857dbad274329e51bb8144a83 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 23 Jan 2018 21:15:26 -0500 Subject: Clear clang-tidy warnings --- aria.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'aria.h') diff --git a/aria.h b/aria.h index ca3f3b81..ebc44f08 100644 --- a/aria.h +++ b/aria.h @@ -50,8 +50,11 @@ public: private: // Reference implementation allocates a table of 17 round keys. - FixedSizeAlignedSecBlock m_rk; // round keys - FixedSizeAlignedSecBlock m_w; // w0, w1, w2, w3, t and u + typedef SecBlock > AlignedByteBlock; + typedef SecBlock > AlignedWordBlock; + + AlignedByteBlock m_rk; // round keys + AlignedWordBlock m_w; // w0, w1, w2, w3, t and u unsigned int m_rounds; }; -- cgit v1.2.1