diff options
Diffstat (limited to 'src/mbedTLS++/AesCfb128Encryptor.h')
-rw-r--r-- | src/mbedTLS++/AesCfb128Encryptor.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mbedTLS++/AesCfb128Encryptor.h b/src/mbedTLS++/AesCfb128Encryptor.h index ce3e1fd56..e656b12ff 100644 --- a/src/mbedTLS++/AesCfb128Encryptor.h +++ b/src/mbedTLS++/AesCfb128Encryptor.h @@ -18,8 +18,7 @@ /** Encrypts data using the AES / CFB (128) algorithm */ class cAesCfb128Encryptor { -public: - + public: cAesCfb128Encryptor(void); ~cAesCfb128Encryptor(); @@ -32,8 +31,7 @@ public: /** Returns true if the object has been initialized with the Key / IV */ bool IsValid(void) const { return m_IsValid; } -protected: - + protected: mbedtls_aes_context m_Aes; /** The InitialVector, used by the CFB mode encryption */ @@ -41,4 +39,4 @@ protected: /** Indicates whether the object has been initialized with the Key / IV */ bool m_IsValid; -} ; +}; |