HomeSort by: relevance | last modified time | path
    Searched refs:sae (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/bsd/wpa/dist/src/common/
sae.c 23 #include "sae.h"
26 int sae_set_group(struct sae_data *sae, int group)
34 wpa_printf(MSG_DEBUG, "SAE: Reject unsuitable group %d", group);
39 sae_clear_data(sae);
40 tmp = sae->tmp = os_zalloc(sizeof(*tmp));
47 wpa_printf(MSG_DEBUG, "SAE: Selecting supported ECC group %d",
49 sae->group = group;
60 wpa_printf(MSG_DEBUG, "SAE: Selecting supported FFC group %d",
62 sae->group = group;
65 sae_clear_data(sae);
    [all...]
Makefile 12 sae.o \
sae.h 126 int sae_set_group(struct sae_data *sae, int group);
127 void sae_clear_temp_data(struct sae_data *sae);
128 void sae_clear_data(struct sae_data *sae);
132 struct sae_data *sae);
133 int sae_prepare_commit_pt(struct sae_data *sae, const struct sae_pt *pt,
136 int sae_process_commit(struct sae_data *sae);
137 int sae_write_commit(struct sae_data *sae, struct wpabuf *buf,
139 u16 sae_parse_commit(struct sae_data *sae, const u8 *data, size_t len,
142 int sae_write_confirm(struct sae_data *sae, struct wpabuf *buf);
143 int sae_check_confirm(struct sae_data *sae, const u8 *data, size_t len
    [all...]
sae_pk.c 2 * SAE-PK
19 #include "sae.h"
153 /* SAE-PK password has at least three four character components
156 wpa_printf(MSG_DEBUG, "SAE-PK: Not a valid password (length)");
164 "SAE-PK: Not a valid password (separator)");
171 "SAE-PK: Not a valid password (character)");
179 "SAE-PK: Not a valid password (checksum)");
188 "SAE-PK: Not a valid password (Sec_1b)");
359 int sae_pk_set_password(struct sae_data *sae, const char *password)
361 struct sae_temporary_data *tmp = sae->tmp
    [all...]
common_module_tests.c 19 #include "sae.h"
257 struct sae_data sae; local
392 os_memset(&sae, 0, sizeof(sae));
395 sae_set_group(&sae, 19) < 0 ||
397 &sae) < 0)
400 /* Override local values based on SAE test vector */
401 crypto_bignum_deinit(sae.tmp->sae_rand, 1);
402 sae.tmp->sae_rand = crypto_bignum_init_set(local_rand,
405 if (!sae.tmp->sae_rand || !mask
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
mesh_rsn.c 37 if (sta->sae->state != SAE_ACCEPTED) {
55 sta->sae->state = SAE_NOTHING;
93 if (!sta->sae || prev_psk)
95 return sta->sae->pmk;
314 struct sae_data *sae)
327 if (sae_set_group(sae, group) == 0) {
328 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
329 sae->group);
349 wpa_msg(wpa_s, MSG_DEBUG, "SAE: No password available");
353 if (mesh_rsn_sae_group(wpa_s, sta->sae) < 0)
    [all...]
sme.c 19 #include "common/sae.h"
76 sae_set_group(&wpa_s->sme.sae, group) == 0) {
77 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
78 wpa_s->sme.sae.group);
79 wpa_s->sme.sae.akmp = external ?
116 wpa_printf(MSG_DEBUG, "SAE: TESTING - commit override");
133 "SAE: Failed to allocate password");
141 "SAE: Failed to allocate password");
151 "SAE: No password found from external storage");
158 "SAE: Failed to allocate password")
    [all...]
mesh_mpm.c 359 if (sta->sae == NULL) {
360 wpa_msg(wpa_s, MSG_INFO, "Mesh MPM: no SAE session");
531 " looks like it does not support mesh SAE PMKSA caching, so remove the cached entry for it",
644 (sta->sae && sta->sae->state > SAE_NOTHING)) {
1266 if (sta->sae && sta->sae->state != SAE_ACCEPTED) {
1267 wpa_printf(MSG_DEBUG, "MPM: SAE not yet accepted for peer");
wpas_glue.c 1330 wpa_s->sme.sae.state == SAE_ACCEPTED &&
1331 wpa_s->sme.sae.pk &&
1338 "SAE-PK: SAE authentication without PK disabled based on AP notification");
  /src/crypto/external/apache2/openssl/dist/crypto/bio/
bio_sock2.c 147 sa_endpoints_t sae; local
149 memset(&sae, 0, sizeof(sae));
150 sae.sae_dstaddr = BIO_ADDR_sockaddr(addr);
151 sae.sae_dstaddrlen = BIO_ADDR_sockaddr_size(addr);
152 if (connectx(sock, &sae, SAE_ASSOCID_ANY,
  /src/external/bsd/wpa/dist/src/pasn/
pasn_responder.c 15 #include "common/sae.h"
57 wpa_printf(MSG_DEBUG, "PASN: SAE buffer too short. len=%zu",
66 wpa_printf(MSG_DEBUG, "PASN: SAE commit: alg=%u, seq=%u, status=%u",
71 wpa_printf(MSG_DEBUG, "PASN: Dropping peer SAE commit");
75 sae_clear_data(&pasn->sae);
76 pasn->sae.state = SAE_NOTHING;
78 ret = sae_set_group(&pasn->sae, pasn->group);
80 wpa_printf(MSG_DEBUG, "PASN: Failed to set SAE group");
85 wpa_printf(MSG_DEBUG, "PASN: No SAE PT found");
89 ret = sae_prepare_commit_pt(&pasn->sae, pasn->pt, own_addr, peer_addr
    [all...]
pasn_initiator.c 15 #include "common/sae.h"
44 ret = sae_set_group(&pasn->sae, pasn->group);
46 wpa_printf(MSG_DEBUG, "PASN: Failed to set SAE group");
50 ret = sae_prepare_commit_pt(&pasn->sae, pasn->pt,
54 wpa_printf(MSG_DEBUG, "PASN: Failed to prepare SAE commit");
61 wpa_printf(MSG_DEBUG, "PASN: Failed to allocate SAE buffer");
69 sae_write_commit(&pasn->sae, buf, NULL, 0);
70 pasn->sae.state = SAE_COMMITTED;
92 wpa_printf(MSG_DEBUG, "PASN: SAE buffer too short (commit)");
98 wpa_printf(MSG_DEBUG, "PASN: SAE buffer too short for commit")
    [all...]
pasn_common.h 90 struct sae_data sae; member in struct:pasn_data
  /src/external/bsd/wpa/dist/src/ap/
ieee802_11.c 23 #include "common/sae.h"
470 "TESTING: Postpone SAE Commit transmission until Confirm is ready");
479 "TESTING: Send postponed SAE Commit first, immediately followed by SAE Confirm");
543 wpa_printf(MSG_DEBUG, "SAE: State %s -> %s for peer " MACSTR " (%s)",
544 sae_state_txt(sta->sae->state), sae_state_txt(state),
546 sta->sae->state = state;
622 if (sta->sae->tmp) {
623 rx_id = sta->sae->tmp->pw_id;
624 use_pt = sta->sae->h2e
1175 struct sae_data *sae = sta->sae; local
    [all...]
ieee802_11_eht.c 846 /* SAE H2E commit message (group, scalar, FFE) */
849 "EHT: SAE Group is not present");
862 wpa_printf(MSG_DEBUG, "EHT: Unknown SAE group %u",
872 wpa_printf(MSG_DEBUG, "EHT: SAE scalar length is %zu", prime_len);
886 "EHT: Too short SAE commit Authentication frame");
890 wpa_hexdump(MSG_DEBUG, "EHT: SAE: Authentication frame elements",
916 wpa_printf(MSG_DEBUG, "SAE: No MLD STA for SAE confirm");
920 if (!sta->sae || sta->sae->state < SAE_COMMITTED || !sta->sae->tmp)
    [all...]
ctrl_iface_ap.c 13 #include "common/sae.h"
308 if (sta->sae && sta->sae->state == SAE_ACCEPTED) {
310 sta->sae->group);
315 if (sta->sae && sta->sae->tmp) {
318 struct wpabuf *groups = sta->sae->tmp->peer_rejected_groups;
sta_info.h 17 #include "common/sae.h"
246 struct sae_data *sae; member in struct:sta_info
dpp_hostapd.c 2420 bool sae = false, psk = false; local
2480 sae = hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_SAE;
2485 for (e = hapd->conf->sae_passwords; sae && e && !password;
2506 if (conf_id > 0 && sae && psk && pass_hex) {
2508 "conf=sta-dpp+psk+sae configurator=%d ssid=%s pass=%s",
2510 } else if (conf_id > 0 && sae && pass_hex) {
2512 "conf=sta-dpp+sae configurator=%d ssid=%s pass=%s",
2518 } if (sae && psk && pass_hex) {
2520 "conf=sta-psk+sae ssid=%s pass=%s",
2522 } else if (sae && pass_hex)
    [all...]
sta_info.c 15 #include "common/sae.h"
174 sae_clear_data(&sta->pasn->sae);
427 sae_clear_data(sta->sae);
428 os_free(sta->sae);
wpa_auth_glue.c 15 #include "common/sae.h"
360 if (!sta->sae || prev_psk)
363 *psk_len = sta->sae->pmk_len;
364 return sta->sae->pmk;
368 "No PSK for STA trying to use SAE with PMKSA caching");
wps_hostapd.c 592 int sae = 0; local
610 sae = 1;
614 if (sae && hapd->conf->ieee80211w == NO_MGMT_FRAME_PROTECTION) {
619 if (sae)
  /src/external/gpl3/gdb.old/dist/opcodes/
i386-opc.h 738 SAE,
816 unsigned int sae:1; member in struct:i386_opcode_modifier
  /src/external/gpl3/binutils/dist/opcodes/
i386-opc.h 784 SAE,
862 unsigned int sae:1; member in struct:i386_opcode_modifier
  /src/external/gpl3/binutils.old/dist/opcodes/
i386-opc.h 771 SAE,
849 unsigned int sae:1; member in struct:i386_opcode_modifier
  /src/external/gpl3/gdb/dist/opcodes/
i386-opc.h 771 SAE,
849 unsigned int sae:1; member in struct:i386_opcode_modifier

Completed in 92 milliseconds

1 2