Home
last modified time | relevance | path

Searched refs:aes_decrypt (Results 1 - 25 of 28) sorted by relevance

12

/third_party/ffmpeg/libavformat/
H A Dcrypto.c55 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 Disom.h311 struct AVAES *aes_decrypt; member
H A Dmov.c1057 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 Daes.h18 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Daes-unwrap.c61 aes_decrypt(ctx, b, b); in aes_unwrap()
H A Daes-cbc.c78 aes_decrypt(ctx, pos, pos); in aes_128_cbc_decrypt()
H A Dcrypto_nettle.c16 #undef aes_decrypt macro
292 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Daes-internal-dec.c151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto.h145 * aes_decrypt - Decrypt one AES block
151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Dcrypto_internal-cipher.c186 aes_decrypt(ctx->u.aes.ctx_dec, crypt, plain); in crypto_cipher_decrypt()
H A Dcrypto_gnutls.c271 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_libtomcrypt.c129 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_linux.c523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_openssl.c398 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 Daes.h18 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Daes-unwrap.c61 aes_decrypt(ctx, b, b); in aes_unwrap()
H A Daes-cbc.c78 aes_decrypt(ctx, pos, pos); in aes_128_cbc_decrypt()
H A Dcrypto_nettle.c16 #undef aes_decrypt macro
292 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Daes-internal-dec.c151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_internal-cipher.c186 aes_decrypt(ctx->u.aes.ctx_dec, crypt, plain); in crypto_cipher_decrypt()
H A Dcrypto.h145 * aes_decrypt - Decrypt one AES block
151 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Dcrypto_gnutls.c271 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_libtomcrypt.c129 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
H A Dcrypto_linux.c523 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() function
/third_party/ffmpeg/libavutil/
H A Daes.c151 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()

Completed in 27 milliseconds

12