19 typedef struct aes_cnt_cipher_t aes_cnt_cipher_t;
21 aes_cnt_cipher_t* aes_new_cipher(
const uint8_t *key,
const uint8_t *iv,
23 void aes_cipher_free_(aes_cnt_cipher_t *cipher);
24 #define aes_cipher_free(cipher) \
25 FREE_AND_NULL(aes_cnt_cipher_t, aes_cipher_free_, (cipher))
26 void aes_crypt_inplace(aes_cnt_cipher_t *cipher,
char *data,
size_t len);
28 int evaluate_evp_for_aes(
int force_value);
29 int evaluate_ctr_for_aes(
void);
Headers for util_malloc.c.
Integer definitions used throughout Tor.