/external/wpa_supplicant_8/src/crypto/ |
aes.h | 14 void * aes_encrypt_init(const u8 *key, size_t len);
|
aes-encblock.c | 26 ctx = aes_encrypt_init(key, 16);
|
aes-ctr.c | 33 ctx = aes_encrypt_init(key, 16);
|
aes-wrap.c | 38 ctx = aes_encrypt_init(kek, 16);
|
crypto.h | 91 * aes_encrypt_init - Initialize AES for encryption 96 void * aes_encrypt_init(const u8 *key, size_t len); 100 * @ctx: Context pointer from aes_encrypt_init() 108 * @ctx: Context pointer from aes_encrypt_init() 122 * @ctx: Context pointer from aes_encrypt_init() 130 * @ctx: Context pointer from aes_encrypt_init()
|
aes-cbc.c | 31 ctx = aes_encrypt_init(key, 16);
|
aes-ccm.c | 159 aes = aes_encrypt_init(key, key_len); 190 aes = aes_encrypt_init(key, key_len);
|
aes-internal-enc.c | 98 void * aes_encrypt_init(const u8 *key, size_t len) function
|
aes-omac1.c | 50 ctx = aes_encrypt_init(key, 16);
|
crypto_nss.c | 138 void * aes_encrypt_init(const u8 *key, size_t len) function
|
crypto_gnutls.c | 91 void * aes_encrypt_init(const u8 *key, size_t len) function
|
crypto_internal-cipher.c | 65 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
|
crypto_cryptoapi.c | 236 void * aes_encrypt_init(const u8 *key, size_t len) function 319 return aes_encrypt_init(key, len);
|
aes-gcm.c | 179 aes = aes_encrypt_init(key, key_len);
|
crypto_libtomcrypt.c | 85 void * aes_encrypt_init(const u8 *key, size_t len) function
|
crypto_openssl.c | 207 void * aes_encrypt_init(const u8 *key, size_t len) function
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
aes.h | 18 void * aes_encrypt_init(const u8 *key, size_t len);
|
crypto.h | 92 * aes_encrypt_init - Initialize AES for encryption 97 void * aes_encrypt_init(const u8 *key, size_t len); 101 * @ctx: Context pointer from aes_encrypt_init() 109 * @ctx: Context pointer from aes_encrypt_init() 123 * @ctx: Context pointer from aes_encrypt_init() 131 * @ctx: Context pointer from aes_encrypt_init()
|
aes_wrap.c | 52 ctx = aes_encrypt_init(kek, 16); 191 ctx = aes_encrypt_init(key, 16); 275 ctx = aes_encrypt_init(key, 16); 304 ctx = aes_encrypt_init(key, 16); 482 ctx = aes_encrypt_init(key, 16);
|
crypto_gnutls.c | 103 void * aes_encrypt_init(const u8 *key, size_t len) function
|
crypto_cryptoapi.c | 245 void * aes_encrypt_init(const u8 *key, size_t len) function 328 return aes_encrypt_init(key, len);
|
crypto_openssl.c | 160 void * aes_encrypt_init(const u8 *key, size_t len) function
|
crypto_libtomcrypt.c | 90 void * aes_encrypt_init(const u8 *key, size_t len) function
|
crypto_internal.c | 279 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
|
/external/wpa_supplicant_6/wpa_supplicant/tests/ |
test_aes.c | 38 ctx = aes_encrypt_init(key, 16); 46 ctx = aes_encrypt_init(key, 16);
|