summaryrefslogtreecommitdiff
path: root/aria.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-04-16 13:00:45 -0400
committerJeffrey Walton <noloader@gmail.com>2017-04-16 13:00:45 -0400
commit1d1a1507372b7be7cbccdfec818a9f9985be03c6 (patch)
treece583dc1073d86651e09975751256ac89cccb528 /aria.h
parentddc0f3a899ff235794108dc9289b689a4508112e (diff)
downloadcryptopp-git-1d1a1507372b7be7cbccdfec818a9f9985be03c6.tar.gz
Avoid extra loads of workspace variables
Diffstat (limited to 'aria.h')
-rw-r--r--aria.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/aria.h b/aria.h
index 1102509e..86ccf6c9 100644
--- a/aria.h
+++ b/aria.h
@@ -48,7 +48,7 @@ public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
private:
- // Reference implementation allocates a table of 17 sub-keys.
+ // Reference implementation allocates a table of 17 round keys.
FixedSizeAlignedSecBlock<byte, 16*17> m_rk; // round keys
FixedSizeAlignedSecBlock<word32, 4*7> m_w; // w0, w1, w2, w3, t and u
unsigned int m_rounds;