HomeSort by relevance Sort by last modified time
    Searched refs:hexstr2bin (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/wpa_supplicant_8/src/utils/
uuid.c 28 if (hexstr2bin(pos, opos, 4))
33 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
38 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
43 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
48 if (*pos++ != '-' || hexstr2bin(pos, opos, 6))
common.c 128 * hexstr2bin - Convert ASCII hex string into binary data
135 int hexstr2bin(const char *hex, u8 *buf, size_t len) function
common.h 451 int hexstr2bin(const char *hex, u8 *buf, size_t len);
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
uuid.c 30 if (hexstr2bin(pos, opos, 4))
35 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
40 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
45 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
50 if (*pos++ != '-' || hexstr2bin(pos, opos, 6))
common.c 74 * hexstr2bin - Convert ASCII hex string into binary data
81 int hexstr2bin(const char *hex, u8 *buf, size_t len) function
common.h 421 int hexstr2bin(const char *hex, u8 *buf, size_t len);
  /external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
hlr_auc_gw.c 178 if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) {
194 if (strlen(pos) != 8 || hexstr2bin(pos, g->sres, 4)) {
206 if (strlen(pos) != 32 || hexstr2bin(pos, g->_rand, 16)) {
316 if (strlen(pos) != 32 || hexstr2bin(pos, m->ki, 16)) {
331 if (strlen(pos) != 32 || hexstr2bin(pos, m->opc, 16)) {
346 if (strlen(pos) != 4 || hexstr2bin(pos, m->amf, 2)) {
357 if (strlen(pos) != 12 || hexstr2bin(pos, m->sqn, 6)) {
552 if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
553 hexstr2bin(__rand, _rand, EAP_AKA_RAND_LEN)) {
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 179 if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) {
195 if (strlen(pos) != 8 || hexstr2bin(pos, g->sres, 4)) {
207 if (strlen(pos) != 32 || hexstr2bin(pos, g->_rand, 16)) {
317 if (strlen(pos) != 32 || hexstr2bin(pos, m->ki, 16)) {
332 if (strlen(pos) != 32 || hexstr2bin(pos, m->opc, 16)) {
347 if (strlen(pos) != 4 || hexstr2bin(pos, m->amf, 2)) {
358 if (strlen(pos) != 12 || hexstr2bin(pos, m->sqn, 6)) {
553 if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
554 hexstr2bin(__rand, _rand, EAP_AKA_RAND_LEN)) {
config_file.c 408 if (hexstr2bin(pos, user->password, 16) < 0) {
432 if (hexstr2bin(pos, user->password,
639 if (hexstr2bin(val, wep->key[keyidx], len) < 0)
926 if (hexstr2bin(pos, r0kh->key, sizeof(r0kh->key))) {
971 if (hexstr2bin(pos, r1kh->key, sizeof(r1kh->key))) {
1352 } else if (hexstr2bin(pos, bss->pac_opaque_encr_key,
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
mschapv2.c 113 hexstr2bin((char *) (buf + 2), recv_response,
eap_aka.c 170 if (hexstr2bin(pos, k, 16))
177 if (hexstr2bin(pos, opc, 16))
184 if (hexstr2bin(pos, sqn, 6))
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
mschapv2.c 117 hexstr2bin((char *) (buf + 2), recv_response,
eap_wsc.c 86 hexstr2bin(pos, cred->ssid, len / 2))
126 hexstr2bin(pos, cred->key, len / 2))
eap_aka.c 168 if (hexstr2bin(pos, k, 16))
175 if (hexstr2bin(pos, opc, 16))
182 if (hexstr2bin(pos, sqn, 6))
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim_db.c 148 if (hexstr2bin(start, entry->u.sim.kc[num_chal],
157 if (hexstr2bin(start, entry->u.sim.sres[num_chal],
162 if (hexstr2bin(start, entry->u.sim.rand[num_chal],
220 if (hexstr2bin(start, entry->u.aka.rand, EAP_AKA_RAND_LEN))
228 if (hexstr2bin(start, entry->u.aka.autn, EAP_AKA_AUTN_LEN))
236 if (hexstr2bin(start, entry->u.aka.ik, EAP_AKA_IK_LEN))
244 if (hexstr2bin(start, entry->u.aka.ck, EAP_AKA_CK_LEN))
262 if (hexstr2bin(start, entry->u.aka.res, entry->u.aka.res_len))
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_sim_db.c 149 if (hexstr2bin(start, entry->u.sim.kc[num_chal],
158 if (hexstr2bin(start, entry->u.sim.sres[num_chal],
163 if (hexstr2bin(start, entry->u.sim.rand[num_chal],
221 if (hexstr2bin(start, entry->u.aka.rand, EAP_AKA_RAND_LEN))
229 if (hexstr2bin(start, entry->u.aka.autn, EAP_AKA_AUTN_LEN))
237 if (hexstr2bin(start, entry->u.aka.ik, EAP_AKA_IK_LEN))
245 if (hexstr2bin(start, entry->u.aka.ck, EAP_AKA_CK_LEN))
263 if (hexstr2bin(start, entry->u.aka.res, entry->u.aka.res_len))
    [all...]
  /external/wpa_supplicant/
ctrl_iface_udp.c 203 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
475 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
common.h 240 int hexstr2bin(const char *hex, u8 *buf, size_t len);
common.c 82 * hexstr2bin - Convert ASCII hex string into binary data
89 int hexstr2bin(const char *hex, u8 *buf, size_t len) function
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_udp.c 203 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
475 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
wps_supplicant.c 287 if (hexstr2bin((char *) cred->key,
345 if (hexstr2bin((const char *) cred->key, ssid->psk,
681 if (hexstr2bin(pos, oui, 4)) {
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 203 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
475 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
wps_supplicant.c 301 if (hexstr2bin((char *) cred->key,
369 if (hexstr2bin((const char *) cred->key, ssid->psk,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.c 184 if (hexstr2bin(bssid_txt, bssid, ETH_ALEN) < 0)
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 311 hexstr2bin(rbuf, buf, ret);

Completed in 406 milliseconds

1 2 3