Home
last modified time | relevance | path

Searched refs:base (Results 1 – 19 of 19) sorted by relevance

/hostap-3.7.0/src/wps/
Dhttp_client.c317 char * http_link_update(char *url, const char *base) in http_link_update() argument
332 if (os_strncmp(base, "http://", 7) != 0) in http_link_update()
335 len = os_strlen(url) + 1 + os_strlen(base) + 1; in http_link_update()
341 pos = os_strchr(base + 7, '/'); in http_link_update()
343 os_snprintf(n, len, "%s%s", base, url); in http_link_update()
345 os_memcpy(n, base, pos - base); in http_link_update()
346 os_memcpy(n + (pos - base), url, os_strlen(url) + 1); in http_link_update()
349 pos = os_strrchr(base + 7, '/'); in http_link_update()
351 os_snprintf(n, len, "%s/%s", base, url); in http_link_update()
353 os_memcpy(n, base, pos - base + 1); in http_link_update()
[all …]
Dhttp_client.h38 char * http_link_update(char *url, const char *base);
/hostap-3.7.0/wpa_supplicant/
Dautoscan_exponential.c17 int base; member
32 data->base = atoi(params); in autoscan_exponential_get_params()
60 "and limit is %d", data->base, data->limit); in autoscan_exponential_init()
88 data->interval = data->base; in autoscan_exponential_notify_scan()
90 data->interval = data->interval * data->base; in autoscan_exponential_notify_scan()
DREADME-P2P103 Timeout - Optional ASCII base-10-encoded u16. If missing, request will not
DREADME195 to address the flaws of the base standard and has in practice
/hostap-3.7.0/src/crypto/
Dcrypto_internal-modexp.c89 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
106 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 || in crypto_mod_exp()
Dcrypto_nettle.c375 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
385 mpz_import(bn_base, base_len, 1, 1, 1, 0, base); in crypto_mod_exp()
Dcrypto_gnutls.c361 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
370 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) != in crypto_mod_exp()
Dcrypto_libtomcrypt.c738 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
748 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK || in crypto_mod_exp()
Dcrypto_mbedtls.c604 const uint8_t *base, size_t base_len, const uint8_t *power, in crypto_mod_exp() argument
617 MBEDTLS_MPI_CHK(mbedtls_mpi_read_binary(&bn_base, base, base_len)); in crypto_mod_exp()
Dcrypto.h466 int __must_check crypto_mod_exp(const u8 *base, size_t base_len,
Dcrypto_openssl.c662 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
675 bn_base = BN_bin2bn(base, base_len, NULL); in crypto_mod_exp()
/hostap-3.7.0/tests/hwsim/
Dtest_owe.py617 if (int(status[0], base=0) != 77 or int(status[1], base=0) != 77 or
618 int(status[2], base=0) != 0):
Dtest_he.py340 capab0 = int(sta0['vht_caps_info'], base=16)
341 capab2 = int(sta2['vht_caps_info'], base=16)
Dtest_ap_vht.py200 capab0 = int(sta0['vht_caps_info'], base=16)
201 capab2 = int(sta2['vht_caps_info'], base=16)
Dtest_ap_pmf.py1067 rx_spec = int(sta_key['rx_spec'], base=16)
1071 tx_spec = int(ap_key['tx_spec'], base=16)
DREADME88 base kernel.
/hostap-3.7.0/wpa_supplicant/doc/docbook/
Dwpa_background.sgml24 the base standard and has in practice completed its work in May
/hostap-3.7.0/hostapd/
DREADME233 to address the flaws of the base standard and has in practice