1
0
Fork 0
cuberite-2a/src/mbedTLS++/AesCfb128Decryptor.h

49 lines
930 B
C
Raw Normal View History

2017-09-19 08:34:08 +00:00
// AesCfb128Decryptor.h
// Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128
#pragma once
#include "mbedtls/aes.h"
/** Decrypts data using the AES / CFB 128 algorithm */
class cAesCfb128Decryptor
{
public:
2016-02-05 21:45:45 +00:00
cAesCfb128Decryptor(void);
~cAesCfb128Decryptor();
2016-02-05 21:45:45 +00:00
/** Initializes the decryptor with the specified Key / IV */
void Init(const Byte a_Key[16], const Byte a_IV[16]);
2016-02-05 21:45:45 +00: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 21:45:45 +00:00
/** Returns true if the object has been initialized with the Key / IV */
bool IsValid(void) const { return m_IsValid; }
2016-02-05 21:45:45 +00:00
protected:
mbedtls_aes_context m_Aes;
2016-02-05 21:45:45 +00:00
/** The InitialVector, used by the CFB mode decryption */
Byte m_IV[16];
2016-02-05 21:45:45 +00:00
/** Indicates whether the object has been initialized with the Key / IV */
bool m_IsValid;
} ;