aboutsummaryrefslogtreecommitdiff
path: root/zenserver/auth/authmgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zenserver/auth/authmgr.cpp')
-rw-r--r--zenserver/auth/authmgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/auth/authmgr.cpp b/zenserver/auth/authmgr.cpp
index 0b7d7b492..2c54386ee 100644
--- a/zenserver/auth/authmgr.cpp
+++ b/zenserver/auth/authmgr.cpp
@@ -39,7 +39,7 @@ namespace details {
return IoBuffer();
}
- std::unique_ptr<SymmetricCipher> Cipher = MakeAesCipher();
+ std::unique_ptr<SymmetricCipher> Cipher = SymmetricCipher::CreateAes();
if (Cipher->Initialize(EncryptionKey, IV) == false)
{
@@ -59,7 +59,7 @@ namespace details {
return 0;
}
- std::unique_ptr<SymmetricCipher> Cipher = MakeAesCipher();
+ std::unique_ptr<SymmetricCipher> Cipher = SymmetricCipher::CreateAes();
if (Cipher->Initialize(EncryptionKey, IV) == false)
{