summaryrefslogtreecommitdiff
path: root/cmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-04 19:49:45 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-04 19:49:45 -0400
commita2223356b00ae3736f485e28c38213f48d2cc155 (patch)
tree2aa6bccc5175970167de60b49c8fb588106e5bbb /cmac.h
parentd0eefdf32a5ee7ba515d468b52fc2ea92d87fb84 (diff)
downloadcryptopp-git-a2223356b00ae3736f485e28c38213f48d2cc155.tar.gz
Use aligned buffer for CMAC
Diffstat (limited to 'cmac.h')
-rw-r--r--cmac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmac.h b/cmac.h
index 60482277..1743c008 100644
--- a/cmac.h
+++ b/cmac.h
@@ -34,7 +34,7 @@ protected:
virtual BlockCipher & AccessCipher() =0;
void ProcessBuf();
- SecByteBlock m_reg;
+ AlignedSecByteBlock m_reg;
unsigned int m_counter;
};