summaryrefslogtreecommitdiff
path: root/authenc.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-08-17 12:33:43 -0400
committerGitHub <noreply@github.com>2017-08-17 12:33:43 -0400
commite2c377effd9a4eca0291c217e9c3256b033511dc (patch)
treea33fa7d52e14b923a034bafb9a05172a983a0e7c /authenc.cpp
parent74d21068a16c2b3e879336ae7eed180d4466e8b5 (diff)
downloadcryptopp-git-e2c377effd9a4eca0291c217e9c3256b033511dc.tar.gz
Split source files to support Base Implementation + SIMD implementation (GH #461)
Split source files to support Base Implementation + SIMD implementation
Diffstat (limited to 'authenc.cpp')
-rw-r--r--authenc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/authenc.cpp b/authenc.cpp
index fd446b73..0ed9cd14 100644
--- a/authenc.cpp
+++ b/authenc.cpp
@@ -50,7 +50,7 @@ void AuthenticatedSymmetricCipherBase::SetKey(const byte *userKey, size_t keylen
m_bufferedDataLength = 0;
m_state = State_Start;
- SetKeyWithoutResync(userKey, keylength, params);
+ this->SetKeyWithoutResync(userKey, keylength, params);
m_state = State_KeySet;
size_t length;