summaryrefslogblamecommitdiffstats
path: root/src/mbedTLS++/AesCfb128Encryptor.h
blob: f25998c15fc73e241033bdbcc73b199d7eda7be3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
 









                                                                           
                        








                                                        
 

                                  
 

                                                                    
 
                                                                                        
                                                                                                   
 

                                                                                
 
          
                                  
 

                                                                 
 







                                                                                  

// AesCfb128Encryptor.h

// Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128





#pragma once

#include "mbedtls/aes.h"





/** Encrypts data using the AES / CFB (128) algorithm */
class cAesCfb128Encryptor
{
public:

	cAesCfb128Encryptor(void);
	~cAesCfb128Encryptor();

	/** 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);

	/** 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 */
	Byte m_IV[16];

	/** Indicates whether the object has been initialized with the Key / IV */
	bool m_IsValid;
} ;