HomeSort by relevance Sort by last modified time
    Searched defs:encr (Results 1 - 13 of 13) sorted by null

  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.h 24 const char *encr; member in struct:wps_new_ap_settings
  /external/wpa_supplicant_8/src/eap_server/
ikev2.h 18 int encr; member in struct:ikev2_proposal_data
ikev2.c 42 const struct ikev2_encr_alg *encr; local
51 encr = ikev2_get_encr(data->proposal.encr);
52 if (integ == NULL || prf == NULL || encr == NULL) {
113 ret = ikev2_derive_sk_keys(prf, integ, encr, skeyseed, buf, buf_len,
164 transform_id == data->proposal.encr) {
185 prop->encr = transform_id;
327 prop.encr = -1;
334 prop.encr != -1 && prop.dh != -1) {
354 wpa_printf(MSG_DEBUG, "IKEV2: Accepted proposal #%d: ENCR:%d PRF:%d
    [all...]
eap_server_fast.c 815 struct wpabuf *encr; local
819 encr = eap_server_tls_encrypt(sm, &data->ssl, plain);
826 (int) wpabuf_len(encr),
829 if (wpabuf_resize(&data->ssl.tls_out, wpabuf_len(encr)) < 0) {
832 wpabuf_free(encr);
835 wpabuf_put_buf(data->ssl.tls_out, encr);
836 wpabuf_free(encr);
840 data->ssl.tls_out = encr;
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_eke_common.h 64 u8 encr; member in struct:eap_eke_session
81 int eap_eke_session_init(struct eap_eke_session *sess, u8 dhgroup, u8 encr,
eap_sim_common.c 498 struct eap_sim_attrs *attr, int aka, int encr)
565 if (!encr) {
570 wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) AT_PADDING");
573 wpa_printf(MSG_INFO, "EAP-SIM: (encr) "
577 "(encr) padding bytes",
673 if (!encr) {
679 wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid "
685 wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) AT_COUNTER %d",
689 if (!encr) {
695 wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid
974 size_t mac, iv, encr; \/* index from buf *\/ member in struct:eap_sim_msg
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
ikev2.h 18 int encr; member in struct:ikev2_proposal_data
ikev2.c 38 const struct ikev2_encr_alg *encr; local
47 encr = ikev2_get_encr(data->proposal.encr);
48 if (integ == NULL || prf == NULL || encr == NULL) {
126 ret = ikev2_derive_sk_keys(prf, integ, encr, skeyseed, buf, buf_len,
205 prop->encr = transform_id;
345 prop.encr = -1;
352 prop.encr != -1 && prop.dh != -1) {
371 wpa_printf(MSG_DEBUG, "IKEV2: Accepted proposal #%d: ENCR:%d PRF:%d "
373 data->proposal.encr, data->proposal.prf
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 71 int auth, encr = 0; local
84 encr = 1;
86 encr = 0;
88 encr = 1;
92 encr = 0;
96 encrSelect->setCurrentIndex(encr);
278 int encr = encrSelect->currentIndex(); local
279 if (encr == 0)
533 int auth = AUTH_NONE_OPEN, encr = 0; local
544 encr = 1
    [all...]
wpagui.cpp 568 QString encr; local
571 encr.append(pairwise_cipher);
572 encr.append(" + ");
573 encr.append(group_cipher);
575 encr.append(pairwise_cipher);
577 encr.append(group_cipher);
578 encr.append(" [group key only]");
580 textEncryption->setText(encr);
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 468 char *ssid, *auth, *encr = NULL, *key = NULL; local
480 encr = pos;
488 return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 1912 int wpa_ie_len, secure, keyidx, encr = 0; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 615 static int ndis_set_encr_status(struct wpa_driver_ndis_data *drv, int encr)
617 u32 encr_status = encr;
621 "OID_802_11_ENCRYPTION_STATUS (%d)", encr);
630 u32 encr; local
633 (char *) &encr, sizeof(encr));
634 if (res != sizeof(encr)) {
639 return encr;
1053 u32 auth_mode, encr, priv_mode, mode; local
1142 encr = Ndis802_11Encryption3Enabled
    [all...]

Completed in 246 milliseconds