diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-06-28 23:12:01 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2021-07-06 22:33:03 +0200 |
commit | e735faf7558aff457432a14bdfde893b33d4d311 (patch) | |
tree | 35c76c2849b160c4fa112de6fce7a793ed670b9c /src/mbedTLS++/AesCfb128Encryptor.h | |
parent | Remove outdated comment and redundant check (diff) | |
download | cuberite-e735faf7558aff457432a14bdfde893b33d4d311.tar cuberite-e735faf7558aff457432a14bdfde893b33d4d311.tar.gz cuberite-e735faf7558aff457432a14bdfde893b33d4d311.tar.bz2 cuberite-e735faf7558aff457432a14bdfde893b33d4d311.tar.lz cuberite-e735faf7558aff457432a14bdfde893b33d4d311.tar.xz cuberite-e735faf7558aff457432a14bdfde893b33d4d311.tar.zst cuberite-e735faf7558aff457432a14bdfde893b33d4d311.zip |
Diffstat (limited to 'src/mbedTLS++/AesCfb128Encryptor.h')
-rw-r--r-- | src/mbedTLS++/AesCfb128Encryptor.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mbedTLS++/AesCfb128Encryptor.h b/src/mbedTLS++/AesCfb128Encryptor.h index f25998c15..ce3e1fd56 100644 --- a/src/mbedTLS++/AesCfb128Encryptor.h +++ b/src/mbedTLS++/AesCfb128Encryptor.h @@ -26,13 +26,14 @@ public: /** Initializes the decryptor with the specified Key / IV */ void Init(const Byte a_Key[16], const Byte a_IV[16]); - /** Encrypts a_Length bytes of the plain data; produces a_Length output bytes */ - void ProcessData(std::byte * a_EncryptedOut, const std::byte * a_PlainIn, size_t a_Length); + /** Encrypts a_Length bytes of the plain data in-place; produces a_Length output bytes */ + void ProcessData(std::byte * a_PlainIn, size_t a_Length); /** Returns true if the object has been initialized with the Key / IV */ bool IsValid(void) const { return m_IsValid; } protected: + mbedtls_aes_context m_Aes; /** The InitialVector, used by the CFB mode encryption */ @@ -41,8 +42,3 @@ protected: /** Indicates whether the object has been initialized with the Key / IV */ bool m_IsValid; } ; - - - - - |