12 #if PLATFORM_CRYPTOGRAPHY && defined(_WIN32)
15 #include "mbedtls/aes.h"
34 void ProcessData(std::byte * a_EncryptedIn,
size_t a_Length);
41 #if PLATFORM_CRYPTOGRAPHY && defined(_WIN32)
Decrypts data using the AES / CFB 128 algorithm.
Byte m_IV[16]
The InitialVector, used by the CFB mode decryption.
cAesCfb128Decryptor(void)
bool IsValid(void) const
Returns true if the object has been initialized with the Key / IV.
bool m_IsValid
Indicates whether the object has been initialized with the Key / IV.
void Init(const Byte a_Key[16], const Byte a_IV[16])
Initializes the decryptor with the specified Key / IV.
mbedtls_aes_context m_Aes
void ProcessData(std::byte *a_EncryptedIn, size_t a_Length)
Decrypts a_Length bytes of the encrypted data in-place; produces a_Length output bytes.