Searched refs:aes_ctr (Results 1 - 8 of 8) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A D | movenccenc.c | 99 av_aes_ctr_crypt(ctx->aes_ctr, chunk, cur_pos, cur_size); in mov_cenc_write_encrypted() 114 ret = auxiliary_info_write(ctx, av_aes_ctr_get_iv(ctx->aes_ctr), AES_CTR_IV_SIZE); in mov_cenc_start_packet() 141 av_aes_ctr_increment_iv(ctx->aes_ctr); in mov_cenc_end_packet() 393 ctx->aes_ctr = av_aes_ctr_alloc(); in ff_mov_cenc_init() 394 if (!ctx->aes_ctr) { in ff_mov_cenc_init() 398 ret = av_aes_ctr_init(ctx->aes_ctr, encryption_key); in ff_mov_cenc_init() 404 av_aes_ctr_set_random_iv(ctx->aes_ctr); in ff_mov_cenc_init() 414 av_aes_ctr_free(ctx->aes_ctr); in ff_mov_cenc_free()
|
H A D | movenccenc.h | 25 #include "libavutil/aes_ctr.h" 34 struct AVAESCTR* aes_ctr; member
|
H A D | isom.h | 254 struct AVAESCTR* aes_ctr; member
|
H A D | mov.c | 44 #include "libavutil/aes_ctr.h" 7133 if (!sc->cenc.aes_ctr) { 7135 sc->cenc.aes_ctr = av_aes_ctr_alloc(); 7136 if (!sc->cenc.aes_ctr) { 7140 ret = av_aes_ctr_init(sc->cenc.aes_ctr, c->decryption_key); 7146 av_aes_ctr_set_full_iv(sc->cenc.aes_ctr, sample->iv); 7150 av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, size); 7167 av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, bytes_of_protected_data); 7246 if (!sc->cenc.aes_ctr) { 7248 sc->cenc.aes_ctr [all...] |
H A D | movenc.c | 2897 if (track->cenc.aes_ctr) { in mov_write_stbl_tag() 6531 if (trk->cenc.aes_ctr) { 6551 if (trk->cenc.aes_ctr) { 6600 if (trk->cenc.aes_ctr) {
|
/third_party/ffmpeg/tests/fate/ |
H A D | libavutil.mak | 11 FATE_LIBAVUTIL += fate-aes_ctr 12 fate-aes_ctr: libavutil/tests/aes_ctr$(EXESUF) 13 fate-aes_ctr: CMD = run libavutil/tests/aes_ctr$(EXESUF) 14 fate-aes_ctr: CMP = null
|
/third_party/ffmpeg/libavutil/ |
H A D | Makefile | 6 aes_ctr.h \ 106 aes_ctr.o \ 226 aes_ctr \
|
/third_party/mbedtls/programs/test/ |
H A D | benchmark.c | 508 aes_cbc, aes_cfb128, aes_cfb8, aes_ctr, aes_gcm, aes_ccm, aes_xts, chachapoly, member 572 } else if (strcmp(argv[i], "aes_ctr") == 0) { in main() 573 todo.aes_ctr = 1; in main() 778 if (todo.aes_ctr) { in main()
|
Completed in 23 milliseconds