/third_party/ffmpeg/libavformat/ |
H A D | crypto.c | 55 struct AVAES *aes_decrypt; member 151 c->aes_decrypt = av_aes_alloc(); in crypto_open2() 152 if (!c->aes_decrypt) { in crypto_open2() 156 ret = av_aes_init(c->aes_decrypt, c->decrypt_key, BLOCKSIZE * 8, 1); in crypto_open2() 214 av_aes_crypt(c->aes_decrypt, c->outbuffer, c->inbuffer + c->indata_used, in crypto_read() 385 av_freep(&c->aes_decrypt); in crypto_close()
|
H A D | isom.h | 311 struct AVAES *aes_decrypt; member
|
H A D | mov.c | 1057 av_free(c->aes_decrypt); in mov_read_adrm() 1058 c->aes_decrypt = av_aes_alloc(); in mov_read_adrm() 1059 if (!c->aes_decrypt) { in mov_read_adrm() 1112 av_aes_init(c->aes_decrypt, intermediate_key, 128, 1); in mov_read_adrm() 1113 av_aes_crypt(c->aes_decrypt, output, input, DRM_BLOB_SIZE >> 4, intermediate_iv, 1); in mov_read_adrm() 1148 c->aes_decrypt = av_aes_alloc(); in mov_aaxc_crypto() 1149 if (!c->aes_decrypt) { in mov_aaxc_crypto() 1168 av_aes_init(c->aes_decrypt, c->file_key, 128, 1); in aax_filter() 1169 av_aes_crypt(c->aes_decrypt, input, input, blocks, iv, 1); in aax_filter() 8549 av_freep(&mov->aes_decrypt); [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | aes.h | 18 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | aes-unwrap.c | 61 aes_decrypt(ctx, b, b); in aes_unwrap()
|
H A D | aes-cbc.c | 78 aes_decrypt(ctx, pos, pos); in aes_128_cbc_decrypt()
|
H A D | crypto_nettle.c | 16 #undef aes_decrypt macro 292 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | aes-internal-dec.c | 151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto.h | 145 * aes_decrypt - Decrypt one AES block 151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | crypto_internal-cipher.c | 186 aes_decrypt(ctx->u.aes.ctx_dec, crypt, plain); in crypto_cipher_decrypt()
|
H A D | crypto_gnutls.c | 271 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto_libtomcrypt.c | 129 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto_linux.c | 523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto_openssl.c | 398 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | aes.h | 18 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | aes-unwrap.c | 61 aes_decrypt(ctx, b, b); in aes_unwrap()
|
H A D | aes-cbc.c | 78 aes_decrypt(ctx, pos, pos); in aes_128_cbc_decrypt()
|
H A D | crypto_nettle.c | 16 #undef aes_decrypt macro 292 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | aes-internal-dec.c | 151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto_internal-cipher.c | 186 aes_decrypt(ctx->u.aes.ctx_dec, crypt, plain); in crypto_cipher_decrypt()
|
H A D | crypto.h | 145 * aes_decrypt - Decrypt one AES block 151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
H A D | crypto_gnutls.c | 271 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto_libtomcrypt.c | 129 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
H A D | crypto_linux.c | 523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
|
/third_party/ffmpeg/libavutil/ |
H A D | aes.c | 151 static void aes_decrypt(AVAES *a, uint8_t *dst, const uint8_t *src, in aes_decrypt() function 208 a->crypt = decrypt ? aes_decrypt : aes_encrypt; in av_aes_init()
|