Searched refs:hexlen (Results 1 – 8 of 8) sorted by relevance
| /freebsd/crypto/krb5/src/util/support/ |
| H A D | hex.c | 88 size_t hexlen, i; in k5_hex_decode() local 95 hexlen = strlen(hex); in k5_hex_decode() 96 if (hexlen % 2 != 0) in k5_hex_decode() 98 bytes = malloc(hexlen / 2 + 1); in k5_hex_decode() 102 for (i = 0; i < hexlen / 2; i++) { in k5_hex_decode() 114 *len_out = hexlen / 2; in k5_hex_decode()
|
| /freebsd/usr.bin/sed/ |
| H A D | compile.c | 421 int hexlen; in compile_delimited() local 466 if (dohex(&p[2], d, &hexlen)) { in compile_delimited() 468 p += hexlen + 2; in compile_delimited() 490 int c, d, hexlen; in compile_ccl() local 519 if (dohex(&s[2], t, &hexlen)) in compile_ccl() 520 s += hexlen + 1; in compile_ccl() 562 int asize, hexlen, size; in compile_subst() local 636 if (dohex(&p[1], p, &hexlen)) { in compile_subst() 638 hexlen); in compile_subst()
|
| /freebsd/contrib/wpa/wpa_supplicant/ |
| H A D | wpas_glue.c | 1294 size_t hexlen; in wpa_supplicant_fils_hlp_rx() local 1296 hexlen = pkt_len * 2 + 1; in wpa_supplicant_fils_hlp_rx() 1297 hex = os_malloc(hexlen); in wpa_supplicant_fils_hlp_rx() 1300 wpa_snprintf_hex(hex, hexlen, pkt, pkt_len); in wpa_supplicant_fils_hlp_rx()
|
| H A D | dpp_supplicant.c | 1750 size_t hexlen; in wpas_dpp_handle_config_obj() local 1752 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in wpas_dpp_handle_config_obj() 1753 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj() 1755 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj() 1765 size_t hexlen; in wpas_dpp_handle_config_obj() local 1767 hexlen = 2 * wpabuf_len(conf->pp_key) + 1; in wpas_dpp_handle_config_obj() 1768 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj() 1770 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj() 1779 size_t hexlen; in wpas_dpp_handle_config_obj() local 1781 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in wpas_dpp_handle_config_obj() [all …]
|
| /freebsd/sbin/sysctl/ |
| H A D | sysctl.c | 1072 int i, hexlen, sign, ctltype; in show_var() local 1227 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in show_var() 1264 printf("%#0*jx", hexlen, umv); in show_var()
|
| /freebsd/contrib/wpa/src/ap/ |
| H A D | dpp_hostapd.c | 1176 size_t hexlen; in hostapd_dpp_handle_config_obj() local 1178 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in hostapd_dpp_handle_config_obj() 1179 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj() 1181 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj() 1191 size_t hexlen; in hostapd_dpp_handle_config_obj() local 1193 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in hostapd_dpp_handle_config_obj() 1194 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj() 1196 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
|
| /freebsd/sys/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_crypto.c | 149 hex_key_to_raw(char *hex, int hexlen, uint8_t *out) in hex_key_to_raw() argument 154 for (i = 0; i < hexlen; i += 2) { in hex_key_to_raw()
|
| /freebsd/sys/kern/ |
| H A D | kern_sysctl.c | 2716 int sign, ctltype, hexlen, xflag, error; in sysctl_old_ddb() local 2758 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in sysctl_old_ddb() 2796 db_printf("%#0*jx", hexlen, umv); in sysctl_old_ddb()
|