summaryrefslogtreecommitdiffstats
path: root/src/mbedTLS++/AesCfb128Encryptor.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/mbedTLS++/AesCfb128Encryptor.h (renamed from src/PolarSSL++/AesCfb128Encryptor.h)9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/PolarSSL++/AesCfb128Encryptor.h b/src/mbedTLS++/AesCfb128Encryptor.h
index 71280a098..6bfa6b5c9 100644
--- a/src/PolarSSL++/AesCfb128Encryptor.h
+++ b/src/mbedTLS++/AesCfb128Encryptor.h
@@ -1,4 +1,4 @@
-
+
// AesCfb128Encryptor.h
// Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128
@@ -9,7 +9,7 @@
#pragma once
-#include "polarssl/aes.h"
+#include "mbedtls/aes.h"
@@ -32,14 +32,11 @@ public:
bool IsValid(void) const { return m_IsValid; }
protected:
- aes_context m_Aes;
+ mbedtls_aes_context m_Aes;
/** The InitialVector, used by the CFB mode encryption */
Byte m_IV[16];
- /** Current offset in the m_IV, used by the CFB mode encryption */
- size_t m_IVOffset;
-
/** Indicates whether the object has been initialized with the Key / IV */
bool m_IsValid;
} ;