/hostap-latest/src/ap/ |
D | ieee802_11_auth.c | 414 struct hostapd_cached_radius_acl *cache) in decode_tunnel_passwords() argument 452 hostapd_logger(hapd, cache->addr, in decode_tunnel_passwords() 463 psk->next = cache->info.psk; in decode_tunnel_passwords() 464 cache->info.psk = psk; in decode_tunnel_passwords() 492 struct hostapd_cached_radius_acl *cache; in hostapd_acl_recv_radius() local 528 cache = os_zalloc(sizeof(*cache)); in hostapd_acl_recv_radius() 529 if (!cache) { in hostapd_acl_recv_radius() 533 os_get_reltime(&cache->timestamp); in hostapd_acl_recv_radius() 534 os_memcpy(cache->addr, query->addr, sizeof(cache->addr)); in hostapd_acl_recv_radius() 535 info = &cache->info; in hostapd_acl_recv_radius() [all …]
|
D | wpa_auth_ft.c | 1327 struct wpa_ft_pmk_cache *cache; in wpa_ft_pmk_cache_init() local 1329 cache = os_zalloc(sizeof(*cache)); in wpa_ft_pmk_cache_init() 1330 if (cache) { in wpa_ft_pmk_cache_init() 1331 dl_list_init(&cache->pmk_r0); in wpa_ft_pmk_cache_init() 1332 dl_list_init(&cache->pmk_r1); in wpa_ft_pmk_cache_init() 1335 return cache; in wpa_ft_pmk_cache_init() 1339 void wpa_ft_pmk_cache_deinit(struct wpa_ft_pmk_cache *cache) in wpa_ft_pmk_cache_deinit() argument 1344 dl_list_for_each_safe(r0, r0prev, &cache->pmk_r0, in wpa_ft_pmk_cache_deinit() 1348 dl_list_for_each_safe(r1, r1prev, &cache->pmk_r1, in wpa_ft_pmk_cache_deinit() 1352 os_free(cache); in wpa_ft_pmk_cache_deinit() [all …]
|
D | wpa_auth_i.h | 346 void wpa_ft_pmk_cache_deinit(struct wpa_ft_pmk_cache *cache);
|
/hostap-latest/tests/hwsim/auth_serv/ |
D | as2.conf | 14 ocsp_stapling_response=LOGDIR/ocsp-server-cache.der 15 ocsp_stapling_response_multi=auth_serv/ocsp-multi-server-cache.der
|
D | as.conf | 14 ocsp_stapling_response=LOGDIR/ocsp-server-cache.der 15 ocsp_stapling_response_multi=auth_serv/ocsp-multi-server-cache.der
|
D | update.sh | 156 …/cakey.pem -CA test-ca/cacert.pem -resp_no_certs -reqin ocsp-req.der -respout ocsp-server-cache.der 157 SIZ=`ls -l ocsp-server-cache.der | cut -f5 -d' '` 158 (echo -n 000; echo "obase=16;$SIZ" | bc) | xxd -r -ps > ocsp-multi-server-cache.der 159 cat ocsp-server-cache.der >> ocsp-multi-server-cache.der
|
/hostap-latest/wpa_supplicant/ |
D | todo.txt | 5 authentication has been completed (cache scard data based on serial#(?) 31 - consider merging hostapd and wpa_supplicant PMKSA cache implementations 56 - make sure that TLS session cache is not shared between EAP types or if it 57 is, that the cache entries are bound to only one EAP type; e.g., cache entry
|
D | ChangeLog | 228 * added support for external persistent storage of PMKSA cache 752 cache for peer discovery/updates 802 * fixed OKC-based PMKSA cache entry clearing 955 * limited PMKSA cache entries to be used only with the network context 957 * improved PMKSA cache expiration to avoid unnecessary disconnections 1114 support set/get, which allows for setting BSS cache expiration age 1133 cache expiration age and expiration scan count. 1798 * fixed PMKSA cache deinitialization not to use freed memory when 1825 * fixed PMKSA cache processing not to trigger deauthentication if the 1826 current PMKSA cache entry is replaced with a valid new entry [all …]
|
D | android.config | 515 # External PMKSA cache control 517 # PMKSA cache entries to be fetched and new entries to be added.
|
D | defconfig | 622 # External PMKSA cache control 624 # PMKSA cache entries to be fetched and new entries to be added.
|
D | README | 759 pmksa = show PMKSA cache
|
/hostap-latest/tests/hwsim/ |
D | start.sh | 158 -respout $LOGDIR/ocsp-server-cache.der > $LOGDIR/ocsp.log 2>&1 159 if [ ! -r $LOGDIR/ocsp-server-cache.der ]; then 160 cp $DIR/auth_serv/ocsp-server-cache.der $LOGDIR/ocsp-server-cache.der
|
/hostap-latest/wpadebug/res/raw/ |
D | wpa_commands.txt | 2 PMKSA cache@PMKSA
|
/hostap-latest/hs20/server/ca/ |
D | ocsp-update-cache.sh | 11 -respout ocsp-server-cache.der
|
D | clean.sh | 11 rm -f ca.pem logo.asn1 logo.der server.der ocsp-server-cache.der
|
/hostap-latest/hs20/server/ |
D | hs20-osu-server.txt | 200 ocsp_stapling_response=/home/user/hs20-server/ca/ocsp-server-cache.der 215 # Update cache (This should be run periodically) 216 ./ocsp-update-cache.sh
|
/hostap-latest/src/drivers/ |
D | driver_macsec_linux.c | 359 goto cache; in macsec_drv_macsec_init() 366 goto cache; in macsec_drv_macsec_init() 370 cache: in macsec_drv_macsec_init() 1123 static struct rtnl_link * lookup_sc(struct nl_cache *cache, int parent, u64 sci, in lookup_sc() argument 1138 match = nl_cache_find(cache, (struct nl_object *) needle); in lookup_sc()
|
D | driver_nl80211.c | 1942 struct nl_cache *cache = NULL; in wpa_driver_nl80211_init_nl_global() local 2016 ret = genl_ctrl_alloc_cache(global->nl, &cache); in wpa_driver_nl80211_init_nl_global() 2024 family = genl_ctrl_search(cache, global->nl80211_id); in wpa_driver_nl80211_init_nl_global() 2036 nl_cache_free(cache); in wpa_driver_nl80211_init_nl_global() 2051 nl_cache_free(cache); in wpa_driver_nl80211_init_nl_global()
|
/hostap-latest/hostapd/ |
D | ChangeLog | 182 - added expiration to PMK-R0 and PMK-R1 cache 357 - allow PMKSA cache entry to be removed without association 383 * fixed PMKSA cache timeout from Session-Timeout for WPA/WPA2 cases 384 * fixed OKC PMKSA cache entry fetch to avoid a possible infinite loop 414 removing the PMKSA cache entry 975 * fixed PMKSA cache update in the end of successful RSN 1162 * fixed WPA2 to add PMKSA cache entry when using integrated EAP
|
/hostap-latest/wpa_supplicant/doc/docbook/ |
D | wpa_cli.sgml | 263 <para>show PMKSA cache</para>
|
/hostap-latest/doc/ |
D | ctrl_iface.doxygen | 165 Show PMKSA cache
|
D | dbus.doxygen | 704 <p>Flush BSS entries from the cache.</p> 708 <dd>Maximum age in seconds for BSS entries to keep in cache (0 = remove all entries).</dd>
|