/external/qemu/ |
aes.h | 18 void AES_encrypt(const unsigned char *in, unsigned char *out,
|
/external/srtp/ |
srtp.def | 81 aes_encrypt
|
/external/wpa_supplicant/ |
aes.h | 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
|
aes_wrap.c | 73 aes_encrypt(ctx, b, b); 212 aes_encrypt(ctx, cbc, cbc); 217 aes_encrypt(ctx, pad, pad); 235 aes_encrypt(ctx, pad, mac); 274 aes_encrypt(ctx, in, out); 305 aes_encrypt(ctx, counter, buf); 473 aes_encrypt(ctx, cbc, cbc);
|
crypto.c | 171 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) function 173 AES_encrypt(plain, crypt, ctx);
|
crypto_gnutls.c | 121 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) function
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
aes.h | 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
|
aes_wrap.c | 68 aes_encrypt(ctx, b, b); 215 aes_encrypt(ctx, cbc, cbc); 220 aes_encrypt(ctx, pad, pad); 238 aes_encrypt(ctx, pad, mac); 278 aes_encrypt(ctx, in, out); 310 aes_encrypt(ctx, counter, buf); 491 aes_encrypt(ctx, cbc, cbc);
|
/external/wpa_supplicant_8/src/crypto/ |
aes-encblock.c | 35 aes_encrypt(ctx, in, out);
|
aes.h | 21 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
|
aes-omac1.c | 80 aes_encrypt(ctx, cbc, cbc); 85 aes_encrypt(ctx, pad, pad); 103 aes_encrypt(ctx, pad, mac);
|
aes-ctr.c | 45 aes_encrypt(ctx, counter, buf);
|
aes-cbc.c | 46 aes_encrypt(ctx, cbc, cbc);
|
aes-wrap.c | 60 aes_encrypt(ctx, b, b);
|
/external/openssl/crypto/aes/ |
aes_ecb.c | 66 assert((AES_ENCRYPT == enc)||(AES_DECRYPT == enc)); 68 if (AES_ENCRYPT == enc) 69 AES_encrypt(in, out, key);
|
aes_ige.c | 87 OPENSSL_assert((AES_ENCRYPT == enc)||(AES_DECRYPT == enc)); 92 if (AES_ENCRYPT == enc) 107 AES_encrypt((unsigned char *)outp->data, (unsigned char *)outp->data, key); 133 AES_encrypt((unsigned char *)tmp2.data, (unsigned char *)tmp2.data, key); 228 OPENSSL_assert((AES_ENCRYPT == enc)||(AES_DECRYPT == enc)); 231 if (AES_ENCRYPT == enc) 243 AES_encrypt(out, out, key); 266 AES_encrypt(out, out, key);
|
aes_cfb.c | 64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt); 72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt); 79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
|
aes.h | 63 #define AES_ENCRYPT 1 93 void AES_encrypt(const unsigned char *in, unsigned char *out,
|
aes_cbc.c | 60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
|
aes_ctr.c | 60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
|
aes_ofb.c | 59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
|
/external/srtp/crypto/rng/ |
prng.c | 111 aes_encrypt(&buffer, x917_prng.key); 135 aes_encrypt(&buffer, x917_prng.key); 153 aes_encrypt(&buffer, x917_prng.key); 166 aes_encrypt(&buffer, x917_prng.key);
|
/external/srtp/crypto/include/ |
aes.h | 67 aes_encrypt(v128_t *plaintext, const aes_expanded_key_t exp_key);
|
/external/srtp/crypto/test/ |
aes_calc.c | 100 aes_encrypt(&data, exp_key);
|
/external/openssl/include/openssl/ |
aes.h | 63 #define AES_ENCRYPT 1 93 void AES_encrypt(const unsigned char *in, unsigned char *out,
|