33 #include "../api_core.h"
42 class AES256_Decrypt_Impl;
71 static const int iv_size = 16;
72 static const int key_size = 32;
81 void set_iv(
const unsigned char iv[iv_size]);
86 void set_key(
const unsigned char key[key_size]);
95 void set_padding(
bool value =
true,
bool use_pkcs7 =
true);
98 void add(
const void *data,
int size);
117 std::shared_ptr<AES256_Decrypt_Impl> impl;
AES-256 decryption class (running in Cipher Block Chaining mode)
Definition: aes256_decrypt.h:45
General purpose data buffer.
Definition: databuffer.h:43