Home
last modified time | relevance | path

Searched refs:hexlen (Results 1 – 10 of 10) sorted by relevance

/third_party/iowow/src/utils/
Diwconv.c45 size_t iwhex2bin(const char *hex, int hexlen, char *out, int max) { in iwhex2bin() argument
48 while (pos < hexlen) { in iwhex2bin()
49 if (!pos && (hexlen % 2)) { // first iteration + odd chars in hex in iwhex2bin()
Diwconv.h60 IW_EXPORT size_t iwhex2bin(const char *hex, int hexlen, char *out, int max);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Ddpp_hostapd.c643 size_t hexlen; in hostapd_dpp_handle_config_obj() local
645 hexlen = 2 * wpabuf_len(auth->c_sign_key) + 1; in hostapd_dpp_handle_config_obj()
646 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
648 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
658 size_t hexlen; in hostapd_dpp_handle_config_obj() local
660 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in hostapd_dpp_handle_config_obj()
661 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
663 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Ddpp_supplicant.c967 size_t hexlen; in wpas_dpp_handle_config_obj() local
969 hexlen = 2 * wpabuf_len(auth->c_sign_key) + 1; in wpas_dpp_handle_config_obj()
970 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
972 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
982 size_t hexlen; in wpas_dpp_handle_config_obj() local
984 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in wpas_dpp_handle_config_obj()
985 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
987 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
Dwpas_glue.c1175 size_t hexlen; in wpa_supplicant_fils_hlp_rx() local
1177 hexlen = pkt_len * 2 + 1; in wpa_supplicant_fils_hlp_rx()
1178 hex = os_malloc(hexlen); in wpa_supplicant_fils_hlp_rx()
1181 wpa_snprintf_hex(hex, hexlen, pkt, pkt_len); in wpa_supplicant_fils_hlp_rx()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Ddpp_supplicant.c1481 size_t hexlen; in wpas_dpp_handle_config_obj() local
1483 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in wpas_dpp_handle_config_obj()
1484 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
1486 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
1496 size_t hexlen; in wpas_dpp_handle_config_obj() local
1498 hexlen = 2 * wpabuf_len(conf->pp_key) + 1; in wpas_dpp_handle_config_obj()
1499 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
1501 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
1510 size_t hexlen; in wpas_dpp_handle_config_obj() local
1512 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in wpas_dpp_handle_config_obj()
[all …]
Dwpas_glue.c1248 size_t hexlen; in wpa_supplicant_fils_hlp_rx() local
1250 hexlen = pkt_len * 2 + 1; in wpa_supplicant_fils_hlp_rx()
1251 hex = os_malloc(hexlen); in wpa_supplicant_fils_hlp_rx()
1254 wpa_snprintf_hex(hex, hexlen, pkt, pkt_len); in wpa_supplicant_fils_hlp_rx()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Ddpp_hostapd.c840 size_t hexlen; in hostapd_dpp_handle_config_obj() local
842 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in hostapd_dpp_handle_config_obj()
843 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
845 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
855 size_t hexlen; in hostapd_dpp_handle_config_obj() local
857 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in hostapd_dpp_handle_config_obj()
858 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
860 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
/third_party/python/Objects/
Dbytesobject.c2362 Py_ssize_t hexlen, invalid_char; in _PyBytes_FromHex() local
2373 hexlen = PyUnicode_GET_LENGTH(string); in _PyBytes_FromHex()
2381 for (i = 0; i < hexlen; i++) { in _PyBytes_FromHex()
2393 buf = _PyBytesWriter_Alloc(&writer, hexlen / 2); in _PyBytes_FromHex()
2397 end = str + hexlen; in _PyBytes_FromHex()
/third_party/chromium/patch/
D0001-cve.patch137779 @@ -102,7 +102,7 @@ exsltCryptoHex2Bin (const unsigned char *hex, int hexlen,