12 #include "mbedtls/aes.h" void Init(const Byte a_Key[16], const Byte a_IV[16])
Initializes the decryptor with the specified Key / IV.
Byte m_IV[16]
The InitialVector, used by the CFB mode encryption.
void ProcessData(Byte *a_EncryptedOut, const Byte *a_PlainIn, size_t a_Length)
Encrypts a_Length bytes of the plain data; produces a_Length output bytes.
bool m_IsValid
Indicates whether the object has been initialized with the Key / IV.
Encrypts data using the AES / CFB (128) algorithm.
bool IsValid(void) const
Returns true if the object has been initialized with the Key / IV.
cAesCfb128Encryptor(void)
mbedtls_aes_context m_Aes