22 #ifndef AVUTIL_AES_CTR_H 23 #define AVUTIL_AES_CTR_H 30 #define AES_CTR_KEY_SIZE (16) 31 #define AES_CTR_IV_SIZE (8)
size_t size
Definition: mem.h:207
const uint8_t * av_aes_ctr_get_iv(struct AVAESCTR *a)
int av_aes_ctr_init(struct AVAESCTR *a, const uint8_t *key)
struct AVAESCTR * av_aes_ctr_alloc(void)
void av_aes_ctr_set_random_iv(struct AVAESCTR *a)
void av_aes_ctr_crypt(struct AVAESCTR *a, uint8_t *dst, const uint8_t *src, int size)
void av_aes_ctr_free(struct AVAESCTR *a)
void av_aes_ctr_set_iv(struct AVAESCTR *a, const uint8_t *iv)
void av_aes_ctr_increment_iv(struct AVAESCTR *a)