FFmpeg
|
Go to the source code of this file.
Macros | |
#define | AES_CTR_KEY_SIZE (16) |
#define | AES_CTR_IV_SIZE (8) |
Functions | |
struct AVAESCTR * | av_aes_ctr_alloc (void) |
Allocate an AVAESCTR context. More... | |
int | av_aes_ctr_init (struct AVAESCTR *a, const uint8_t *key) |
Initialize an AVAESCTR context. More... | |
void | av_aes_ctr_free (struct AVAESCTR *a) |
Release an AVAESCTR context. More... | |
void | av_aes_ctr_crypt (struct AVAESCTR *a, uint8_t *dst, const uint8_t *src, int size) |
Process a buffer using a previously initialized context. More... | |
const uint8_t * | av_aes_ctr_get_iv (struct AVAESCTR *a) |
Get the current iv. More... | |
void | av_aes_ctr_set_random_iv (struct AVAESCTR *a) |
Generate a random iv. More... | |
void | av_aes_ctr_set_iv (struct AVAESCTR *a, const uint8_t *iv) |
Forcefully change the iv. More... | |
void | av_aes_ctr_increment_iv (struct AVAESCTR *a) |
Increment the top 64 bit of the iv (performed after each frame) More... | |
#define AES_CTR_KEY_SIZE (16) |
Definition at line 30 of file aes_ctr.h.
Referenced by mov_init(), and mov_read_header().
#define AES_CTR_IV_SIZE (8) |
Definition at line 31 of file aes_ctr.h.
Referenced by av_aes_ctr_increment_iv(), av_aes_ctr_set_iv(), cenc_filter(), mov_cenc_end_packet(), mov_cenc_start_packet(), mov_cenc_write_saiz_tag(), and mov_cenc_write_schi_tag().
Allocate an AVAESCTR context.
Definition at line 36 of file aes_ctr.c.
Referenced by ff_mov_cenc_init(), and mov_read_senc().
Initialize an AVAESCTR context.
key | encryption key, must have a length of AES_CTR_KEY_SIZE |
Definition at line 63 of file aes_ctr.c.
Referenced by ff_mov_cenc_init(), and mov_read_senc().
Release an AVAESCTR context.
Definition at line 78 of file aes_ctr.c.
Referenced by ff_mov_cenc_free(), and mov_read_close().
Process a buffer using a previously initialized context.
dst | destination array, can be equal to src |
src | source array, can be equal to dst |
size | the size of src and dst |
Definition at line 105 of file aes_ctr.c.
Referenced by cenc_filter(), and mov_cenc_write_encrypted().
Forcefully change the iv.
Definition at line 41 of file aes_ctr.c.
Referenced by av_aes_ctr_set_random_iv(), and cenc_filter().
Increment the top 64 bit of the iv (performed after each frame)
Definition at line 98 of file aes_ctr.c.
Referenced by mov_cenc_end_packet().