/external/wpa_supplicant_8/src/crypto/ |
milenage.h | 12 void milenage_generate(const u8 *opc, const u8 *amf, const u8 *k, 13 const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik, 14 u8 *ck, u8 *res, size_t *res_len); 15 int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts [all...] |
ms_funcs.h | 12 int generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge, 13 const u8 *username, size_t username_len, 14 const u8 *password, size_t password_len, 15 u8 *response); 16 int generate_nt_response_pwhash(const u8 *auth_challenge, 17 const u8 *peer_challenge, 18 const u8 *username, size_t username_len, 19 const u8 *password_hash, 20 u8 *response) [all...] |
aes_wrap.h | 21 int __must_check aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher); 22 int __must_check aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain); 23 int __must_check omac1_aes_128_vector(const u8 *key, size_t num_elem, 24 const u8 *addr[], const size_t *len, 25 u8 *mac); 26 int __must_check omac1_aes_128(const u8 *key, const u8 *data, size_t data_len [all...] |
crypto_none.c | 15 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
|
sha1.h | 14 int hmac_sha1_vector(const u8 *key, size_t key_len, size_t num_elem, 15 const u8 *addr[], const size_t *len, u8 *mac); 16 int hmac_sha1(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 u8 *mac); 18 int sha1_prf(const u8 *key, size_t key_len, const char *label, 19 const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 int sha1_t_prf(const u8 *key, size_t key_len, const char *label [all...] |
fips_prf_cryptoapi.c | 15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
|
aes.h | 14 void * aes_encrypt_init(const u8 *key, size_t len); 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 17 void * aes_decrypt_init(const u8 *key, size_t len); 18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
md5.h | 14 int hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem, 15 const u8 *addr[], const size_t *len, u8 *mac); 16 int hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 u8 *mac);
|
sha256.h | 14 int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem, 15 const u8 *addr[], const size_t *len, u8 *mac); 16 int hmac_sha256(const u8 *key, size_t key_len, const u8 *data, 17 size_t data_len, u8 *mac); 18 void sha256_prf(const u8 *key, size_t key_len, const char *label, 19 const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 void sha256_prf_bits(const u8 *key, size_t key_len, const char *label [all...] |
des_i.h | 17 void des_key_setup(const u8 *key, u32 *ek, u32 *dk); 18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 21 void des3_key_setup(const u8 *key, struct des3_key_s *dkey); 22 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain) [all...] |
/external/wpa_supplicant_8/src/common/ |
ieee802_11_common.h | 14 const u8 *ssid; 15 const u8 *supp_rates; 16 const u8 *fh_params; 17 const u8 *ds_params; 18 const u8 *cf_params; 19 const u8 *tim; 20 const u8 *ibss_params; 21 const u8 *challenge; 22 const u8 *erp_info; 23 const u8 *ext_supp_rates [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_attr_parse.h | 16 const u8 *version; /* 1 octet */ 17 const u8 *version2; /* 1 octet */ 18 const u8 *msg_type; /* 1 octet */ 19 const u8 *enrollee_nonce; /* WPS_NONCE_LEN (16) octets */ 20 const u8 *registrar_nonce; /* WPS_NONCE_LEN (16) octets */ 21 const u8 *uuid_r; /* WPS_UUID_LEN (16) octets */ 22 const u8 *uuid_e; /* WPS_UUID_LEN (16) octets */ 23 const u8 *auth_type_flags; /* 2 octets */ 24 const u8 *encr_type_flags; /* 2 octets */ 25 const u8 *conn_type_flags; /* 1 octet * [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
mschapv2.h | 17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len); 18 int mschapv2_derive_response(const u8 *username, size_t username_len, 19 const u8 *password, size_t password_len, 21 const u8 *auth_challenge, 22 const u8 *peer_challenge, 23 u8 *nt_response, u8 *auth_response, 24 u8 *master_key); 25 int mschapv2_verify_auth_response(const u8 *auth_response [all...] |
/external/kernel-headers/original/linux/ |
l3g4200d.h | 39 u8 ctrl_reg_1; 40 u8 ctrl_reg_2; 41 u8 ctrl_reg_3; 42 u8 ctrl_reg_4; 43 u8 ctrl_reg_5; 45 u8 int_config; 46 u8 int_source; 48 u8 int_th_x_h; 49 u8 int_th_x_l; 50 u8 int_th_y_h [all...] |
/dalvik/vm/mterp/c/ |
OP_USHR_LONG.cpp | 1 HANDLE_OP_SHX_LONG(OP_USHR_LONG, "ushr", (u8), >>)
|
OP_USHR_LONG_2ADDR.cpp | 1 HANDLE_OP_SHX_LONG_2ADDR(OP_USHR_LONG_2ADDR, "ushr", (u8), >>)
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wnm_sta.h | 16 u8 present; 17 u8 tsf_offset[2]; 18 u8 beacon_interval[2]; 22 u8 present; 23 u8 country_string[2]; 27 u8 present; 28 u8 preference; 32 u8 present; 33 u8 duration[12]; 37 u8 present [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
eap_sake_common.h | 48 u8 version; /* EAP_SAKE_VERSION */ 49 u8 session_id; 50 u8 subtype; 59 const u8 *rand_s; 60 const u8 *rand_p; 61 const u8 *mic_s; 62 const u8 *mic_p; 63 const u8 *serverid; 65 const u8 *peerid; 67 const u8 *spi_s [all...] |
chap.h | 14 int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 15 size_t challenge_len, u8 *response);
|
eap_eke_common.h | 63 u8 dhgroup; 64 u8 encr; 65 u8 prf; 66 u8 mac; 68 u8 shared_secret[EAP_EKE_MAX_HASH_LEN]; 69 u8 ke[EAP_EKE_MAX_KE_LEN]; 70 u8 ki[EAP_EKE_MAX_KI_LEN]; 71 u8 ka[EAP_EKE_MAX_KA_LEN]; 81 int eap_eke_session_init(struct eap_eke_session *sess, u8 dhgroup, u8 encr [all...] |
eap_sim_common.h | 74 void eap_sim_derive_mk(const u8 *identity, size_t identity_len, 75 const u8 *nonce_mt, u16 selected_version, 76 const u8 *ver_list, size_t ver_list_len, 77 int num_chal, const u8 *kc, u8 *mk); 78 void eap_aka_derive_mk(const u8 *identity, size_t identity_len, 79 const u8 *ik, const u8 *ck, u8 *mk); 80 int eap_sim_derive_keys(const u8 *mk, u8 *k_encr, u8 *k_aut, u8 *msk [all...] |
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_ie.h | 13 const u8 *wpa_ie; 15 const u8 *rsn_ie; 17 const u8 *pmkid; 18 const u8 *gtk; 20 const u8 *mac_addr; 23 const u8 *smk; 25 const u8 *nonce; 27 const u8 *lifetime; 29 const u8 *error; 33 const u8 *igtk [all...] |
hs20.h | 14 u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_image.h | 47 u8 *data; 51 u8 *luma; 52 u8 *cb; 53 u8 *cr; 60 void h264bsdWriteMacroblock(image_t *image, u8 *data); 63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
|
/external/wpa_supplicant_8/src/rsn_supp/ |
wpa_ie.h | 15 const u8 *wpa_ie; 17 const u8 *rsn_ie; 19 const u8 *pmkid; 20 const u8 *gtk; 22 const u8 *mac_addr; 25 const u8 *smk; 27 const u8 *nonce; 29 const u8 *lifetime; 31 const u8 *error; 35 const u8 *igtk [all...] |