/external/openssl/crypto/aes/ |
aes_misc.c | 69 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 75 return private_AES_set_encrypt_key(userKey, bits, key); 78 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, 84 return private_AES_set_decrypt_key(userKey, bits, key);
|
aes.h | 88 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 90 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, 93 int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, 95 int private_AES_set_decrypt_key(const unsigned char *userKey, const int bits,
|
aes_core.c | [all...] |
aes_x86core.c | 470 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 477 if (!userKey || !key) 491 rk[0] = GETU32(userKey ); 492 rk[1] = GETU32(userKey + 4); 493 rk[2] = GETU32(userKey + 8); 494 rk[3] = GETU32(userKey + 12); 513 rk[4] = GETU32(userKey + 16); 514 rk[5] = GETU32(userKey + 20); 535 rk[6] = GETU32(userKey + 24); 536 rk[7] = GETU32(userKey + 28) [all...] |
/external/qemu/include/qemu/ |
aes.h | 13 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 15 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
|
/external/openssl/include/openssl/ |
aes.h | 88 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 90 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, 93 int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, 95 int private_AES_set_decrypt_key(const unsigned char *userKey, const int bits,
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiEnterpriseConfig.java | 172 PrivateKey userKey = null; 180 userKey = keyFactory.generatePrivate(new PKCS8EncodedKeySpec(bytes)); 182 userKey = null; 184 userKey = null; 188 enterpriseConfig.mClientPrivateKey = userKey;
|
/external/chromium_org/third_party/boringssl/src/crypto/cipher/ |
e_aes.c | 144 int vpaes_set_encrypt_key(const uint8_t *userKey, int bits, AES_KEY *key); 145 int vpaes_set_decrypt_key(const uint8_t *userKey, int bits, AES_KEY *key); 159 int vpaes_set_encrypt_key(const uint8_t *userKey, int bits, AES_KEY *key) { 162 int vpaes_set_decrypt_key(const uint8_t *userKey, int bits, AES_KEY *key) { 179 int aesni_set_encrypt_key(const uint8_t *userKey, int bits, AES_KEY *key); 180 int aesni_set_decrypt_key(const uint8_t *userKey, int bits, AES_KEY *key); 213 int aesni_set_encrypt_key(const uint8_t *userKey, int bits, AES_KEY *key) { [all...] |
/external/qemu/util/ |
aes.c | [all...] |
/external/openssl/crypto/evp/ |
e_aes.c | 112 int vpaes_set_encrypt_key(const unsigned char *userKey, int bits, 114 int vpaes_set_decrypt_key(const unsigned char *userKey, int bits, 176 int aesni_set_encrypt_key(const unsigned char *userKey, int bits, 178 int aesni_set_decrypt_key(const unsigned char *userKey, int bits, 504 int HWAES_set_encrypt_key(const unsigned char *userKey, const int bits, 506 int HWAES_set_decrypt_key(const unsigned char *userKey, const int bits, [all...] |
e_aes_cbc_hmac_sha1.c | 100 int aesni_set_encrypt_key(const unsigned char *userKey, int bits, 102 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
|
/system/keymaster/ |
ocb.c | 449 static void AES_128_Key_Expansion(const unsigned char* userkey, void* key) { 452 kp[0] = x0 = _mm_loadu_si128((__m128i*)userkey); 476 static void AES_192_Key_Expansion(const unsigned char* userkey, void* key) { 478 kp[0] = x0 = _mm_loadu_si128((__m128i*)userkey); 479 tmp = x3 = _mm_loadu_si128((__m128i*)(userkey + 16)); 487 static void AES_256_Key_Expansion(const unsigned char* userkey, void* key) { 489 kp[0] = x0 = _mm_loadu_si128((__m128i*)userkey); 490 kp[1] = x3 = _mm_loadu_si128((__m128i*)(userkey + 16)); 520 static int AES_set_encrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) { 522 AES_128_Key_Expansion(userKey, key) [all...] |
/frameworks/base/keystore/java/android/security/ |
AndroidKeyStore.java | 344 public void engineSetKeyEntry(String alias, byte[] userKey, Certificate[] chain)
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar | |
/frameworks/base/services/backup/java/com/android/server/backup/ |
BackupManagerService.java | [all...] |