Searched refs:AVAESCTR (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | aes_ctr.h | 33 struct AVAESCTR; 38 struct AVAESCTR *av_aes_ctr_alloc(void); 44 int av_aes_ctr_init(struct AVAESCTR *a, const uint8_t *key); 49 void av_aes_ctr_free(struct AVAESCTR *a); 57 void av_aes_ctr_crypt(struct AVAESCTR *a, uint8_t *dst, const uint8_t *src, int size); 62 const uint8_t* av_aes_ctr_get_iv(struct AVAESCTR *a); 67 void av_aes_ctr_set_random_iv(struct AVAESCTR *a); 72 void av_aes_ctr_set_iv(struct AVAESCTR *a, const uint8_t* iv); 77 void av_aes_ctr_set_full_iv(struct AVAESCTR *a, const uint8_t* iv); 82 void av_aes_ctr_increment_iv(struct AVAESCTR *a);
|
D | aes_ctr.c | 29 typedef struct AVAESCTR { struct 34 } AVAESCTR; argument 36 struct AVAESCTR *av_aes_ctr_alloc(void) in av_aes_ctr_alloc() 38 return av_mallocz(sizeof(struct AVAESCTR)); in av_aes_ctr_alloc() 41 void av_aes_ctr_set_iv(struct AVAESCTR *a, const uint8_t* iv) in av_aes_ctr_set_iv() 48 void av_aes_ctr_set_full_iv(struct AVAESCTR *a, const uint8_t* iv) in av_aes_ctr_set_full_iv() 54 const uint8_t* av_aes_ctr_get_iv(struct AVAESCTR *a) in av_aes_ctr_get_iv() 59 void av_aes_ctr_set_random_iv(struct AVAESCTR *a) in av_aes_ctr_set_random_iv() 69 int av_aes_ctr_init(struct AVAESCTR *a, const uint8_t *key) in av_aes_ctr_init() 84 void av_aes_ctr_free(struct AVAESCTR *a) in av_aes_ctr_free() [all …]
|
/third_party/ffmpeg/libavutil/tests/ |
D | aes_ctr.c | 32 struct AVAESCTR *ae, *ad; in main()
|
/third_party/ffmpeg/libavformat/ |
D | movenccenc.h | 34 struct AVAESCTR* aes_ctr;
|
D | isom.h | 49 struct AVAESCTR; 239 struct AVAESCTR* aes_ctr;
|