Lines Matching defs:aes
78 #include "libavutil/aes.h"
116 static struct AVAES *aes;
117 if (!aes && !(aes = av_aes_alloc()))
119 av_aes_init(aes, hardcoded_key, 128, 0);
120 av_aes_crypt(aes, output, input, size >> 4, NULL, 0);
203 #include <openssl/aes.h>
226 AES_KEY aes;
229 AES_set_encrypt_key(hardcoded_key, 128, &aes);
232 AES_encrypt(input + i, output + i, &aes);
345 #include <mbedtls/aes.h>
392 DEFINE_MBEDCRYPTO_CYPHER_WRAPPER(aes128, aes, AES)
477 symmetric_key aes;
480 aes_setup(hardcoded_key, 16, 0, &aes);
483 aes_ecb_encrypt(input + i, output + i, &aes);