2017-09-19 04:34:08 -04:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
// AesCfb128Decryptor.h
|
|
|
|
|
|
|
|
// Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-08-30 10:00:06 -04:00
|
|
|
#include "mbedtls/aes.h"
|
2014-04-29 11:37:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Decrypts data using the AES / CFB 128 algorithm */
|
|
|
|
class cAesCfb128Decryptor
|
|
|
|
{
|
|
|
|
public:
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
cAesCfb128Decryptor(void);
|
|
|
|
~cAesCfb128Decryptor();
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
/** Initializes the decryptor with the specified Key / IV */
|
|
|
|
void Init(const Byte a_Key[16], const Byte a_IV[16]);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
/** Decrypts a_Length bytes of the encrypted data; produces a_Length output bytes */
|
|
|
|
void ProcessData(Byte * a_DecryptedOut, const Byte * a_EncryptedIn, size_t a_Length);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
/** Returns true if the object has been initialized with the Key / IV */
|
|
|
|
bool IsValid(void) const { return m_IsValid; }
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
protected:
|
2017-08-30 10:00:06 -04:00
|
|
|
mbedtls_aes_context m_Aes;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
/** The InitialVector, used by the CFB mode decryption */
|
|
|
|
Byte m_IV[16];
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-29 11:37:15 -04:00
|
|
|
/** Indicates whether the object has been initialized with the Key / IV */
|
|
|
|
bool m_IsValid;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|