Searched refs:userKey (Results 1 - 10 of 10) sorted by relevance

/external/openssl/crypto/aes/
H A Daes_misc.c69 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
75 return private_AES_set_encrypt_key(userKey, bits, key);
78 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
84 return private_AES_set_decrypt_key(userKey, bits, key);
H A Daes.h88 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,
H A Daes_core.c628 int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
635 if (!userKey || !key)
649 rk[0] = GETU32(userKey );
650 rk[1] = GETU32(userKey + 4);
651 rk[2] = GETU32(userKey + 8);
652 rk[3] = GETU32(userKey + 12);
671 rk[4] = GETU32(userKey + 16);
672 rk[5] = GETU32(userKey + 20);
693 rk[6] = GETU32(userKey + 24);
694 rk[7] = GETU32(userKey
729 private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1204 private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1304 private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
H A Daes_x86core.c470 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
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
571 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
/external/qemu/
H A Daes.h13 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,
H A Daes.c731 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
738 if (!userKey || !key)
752 rk[0] = GETU32(userKey );
753 rk[1] = GETU32(userKey + 4);
754 rk[2] = GETU32(userKey + 8);
755 rk[3] = GETU32(userKey + 12);
774 rk[4] = GETU32(userKey + 16);
775 rk[5] = GETU32(userKey + 20);
796 rk[6] = GETU32(userKey + 24);
797 rk[7] = GETU32(userKey
832 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
/external/openssl/include/openssl/
H A Daes.h88 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,
/external/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c96 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
98 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
H A De_aes.c112 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,
/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp1135 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, const IDBKey& userKey) argument
1137 return encode(databaseId, objectStoreId, encodeIDBKey(userKey));
1145 PassRefPtr<IDBKey> userKey() const function in class:WebCore::__anon14722::ObjectStoreDataKey
1182 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, const IDBKey& userKey) argument
1184 return encode(databaseId, objectStoreId, encodeIDBKey(userKey));
1192 PassRefPtr<IDBKey> userKey() const function in class:WebCore::__anon14722::ExistsEntryKey
1246 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKey& userKey, int64_t sequenceNumber) argument
1248 return encode(databaseId, objectStoreId, indexId, encodeIDBKey(userKey), sequenceNumber);
1286 PassRefPtr<IDBKey> userKey() const function in class:WebCore::__anon14722::IndexDataKey
1870 if (dataKey.userKey()
[all...]

Completed in 154 milliseconds