HomeSort by relevance Sort by last modified time
    Searched refs:rand_peer (Results 1 - 6 of 6) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_gpsk.c 24 u8 rand_peer[EAP_GPSK_RAND_LEN]; member in struct:eap_gpsk_data
329 if (os_get_random(data->rand_peer, EAP_GPSK_RAND_LEN)) {
331 "for RAND_Peer");
336 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: RAND_Peer",
337 data->rand_peer, EAP_GPSK_RAND_LEN);
338 wpabuf_put_data(resp, data->rand_peer, EAP_GPSK_RAND_LEN);
350 data->rand_peer, data->rand_server,
383 "RAND_Peer");
386 if (os_memcmp(pos, data->rand_peer, EAP_GPSK_RAND_LEN) != 0) {
387 wpa_printf(MSG_DEBUG, "EAP-GPSK: RAND_Peer in GPSK-2 and
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_gpsk.c 19 u8 rand_peer[EAP_GPSK_RAND_LEN]; member in struct:eap_gpsk_data
324 if (random_get_bytes(data->rand_peer, EAP_GPSK_RAND_LEN)) {
326 "for RAND_Peer");
331 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: RAND_Peer",
332 data->rand_peer, EAP_GPSK_RAND_LEN);
333 wpabuf_put_data(resp, data->rand_peer, EAP_GPSK_RAND_LEN);
345 data->rand_peer, data->rand_server,
378 "RAND_Peer");
381 if (os_memcmp(pos, data->rand_peer, EAP_GPSK_RAND_LEN) != 0) {
382 wpa_printf(MSG_DEBUG, "EAP-GPSK: RAND_Peer in GPSK-2 and
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_gpsk.c 25 u8 rand_peer[EAP_GPSK_RAND_LEN]; member in struct:eap_gpsk_data
180 wpabuf_put_data(req, data->rand_peer, EAP_GPSK_RAND_LEN);
320 "RAND_Peer");
324 os_memcpy(data->rand_peer, pos, EAP_GPSK_RAND_LEN);
325 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: RAND_Peer",
326 data->rand_peer, EAP_GPSK_RAND_LEN);
422 data->rand_peer, data->rand_server,
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gpsk.c 20 u8 rand_peer[EAP_GPSK_RAND_LEN]; member in struct:eap_gpsk_data
175 wpabuf_put_data(req, data->rand_peer, EAP_GPSK_RAND_LEN);
315 "RAND_Peer");
319 os_memcpy(data->rand_peer, pos, EAP_GPSK_RAND_LEN);
320 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: RAND_Peer",
321 data->rand_peer, EAP_GPSK_RAND_LEN);
417 data->rand_peer, data->rand_server,
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_gpsk_common.c 208 * inputString = RAND_Peer || ID_Peer || RAND_Server || ID_Server
244 * inputString = RAND_Peer || ID_Peer || RAND_Server || ID_Server
273 * @rand_peer: 32-byte RAND_Peer
289 const u8 *rand_peer, const u8 *rand_server,
307 /* Seed = RAND_Peer || ID_Peer || RAND_Server || ID_Server */
317 os_memcpy(pos, rand_peer, EAP_GPSK_RAND_LEN);
  /external/wpa_supplicant_8/src/eap_common/
eap_gpsk_common.c 199 * inputString = RAND_Peer || ID_Peer || RAND_Server || ID_Server
235 * inputString = RAND_Peer || ID_Peer || RAND_Server || ID_Server
264 * @rand_peer: 32-byte RAND_Peer
280 const u8 *rand_peer, const u8 *rand_server,
298 /* Seed = RAND_Peer || ID_Peer || RAND_Server || ID_Server */
308 os_memcpy(pos, rand_peer, EAP_GPSK_RAND_LEN);

Completed in 112 milliseconds