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

54 lines
1.1 KiB
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
#if PLATFORM_CRYPTOGRAPHY && defined(_WIN32)
#include <wincrypt.h>
#else
#include "mbedtls/aes.h"
#endif
/** 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 in-place; produces a_Length output bytes */
void ProcessData(std::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:
#if PLATFORM_CRYPTOGRAPHY && defined(_WIN32)
HCRYPTPROV m_Aes;
HCRYPTKEY m_Key;
#else
mbedtls_aes_context m_Aes;
#endif
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;
} ;