Home
last modified time | relevance | path

Searched refs:username (Results 1 – 25 of 28) sorted by relevance

12

/hal_espressif-2.7.6/components/wpa_supplicant/src/eap_peer/
Dmschapv2.c12 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len) in mschapv2_remove_domain() argument
22 if (username[i] == '\\') { in mschapv2_remove_domain()
24 return username + i + 1; in mschapv2_remove_domain()
28 return username; in mschapv2_remove_domain()
39 const u8 *username; in mschapv2_derive_response() local
44 username = mschapv2_remove_domain(identity, &username_len); in mschapv2_derive_response()
48 username, username_len, in mschapv2_derive_response()
52 username, username_len, nt_response, in mschapv2_derive_response()
57 username, username_len, in mschapv2_derive_response()
63 username, username_len, in mschapv2_derive_response()
Dmschapv2.h14 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
15 int mschapv2_derive_response(const u8 *username, size_t username_len,
Deap_mschapv2.c371 const u8 *username, *password, *new_password; in eap_mschapv2_change_password() local
378 username = eap_get_config_identity(sm, &username_len); in eap_mschapv2_change_password()
381 if (username == NULL || password == NULL || new_password == NULL) in eap_mschapv2_change_password()
384 username = mschapv2_remove_domain(username, &username_len); in eap_mschapv2_change_password()
433 username, username_len, new_password, in eap_mschapv2_change_password()
439 username, username_len, in eap_mschapv2_change_password()
/hal_espressif-2.7.6/components/esp_http_client/lib/
Dhttp_auth.c70 char *http_auth_digest(const char *username, const char *password, esp_http_auth_data_t *auth_data) in http_auth_digest() argument
77 if (username == NULL || in http_auth_digest()
94 if (md5_printf(ha1, "%s:%s:%s", username, auth_data->realm, password) <= 0) { in http_auth_digest()
98 ESP_LOGD(TAG, "%s %s %s %s\r\n", "Digest", username, auth_data->realm, password); in http_auth_digest()
128username, auth_data->realm, auth_data->nonce, auth_data->uri, digest, auth_data->qop, auth_data->n… in http_auth_digest()
141 char *http_auth_basic(const char *username, const char *password) in http_auth_basic() argument
147 asprintf(&user_info, "%s:%s", username, password); in http_auth_basic()
/hal_espressif-2.7.6/components/wpa_supplicant/src/crypto/
Dms_funcs.c82 const u8 *username, size_t username_len, in challenge_hash() argument
93 addr[2] = username; in challenge_hash()
170 const u8 *username, size_t username_len, in generate_nt_response() argument
177 if (challenge_hash(peer_challenge, auth_challenge, username, in generate_nt_response()
199 const u8 *username, size_t username_len, in generate_nt_response_pwhash() argument
206 username, username_len, in generate_nt_response_pwhash()
229 const u8 *username, size_t username_len, in generate_authenticator_response_pwhash() argument
265 if (challenge_hash(peer_challenge, auth_challenge, username, in generate_authenticator_response_pwhash()
288 const u8 *username, size_t username_len, in generate_authenticator_response() argument
296 username, username_len, nt_response, response); in generate_authenticator_response()
Dms_funcs.h11 const u8 *username, size_t username_len,
17 const u8 *username, size_t username_len,
23 const u8 *username, size_t username_len,
28 const u8 *username, size_t username_len,
/hal_espressif-2.7.6/components/esp_http_client/lib/include/
Dhttp_auth.h46 char *http_auth_digest(const char *username, const char *password, esp_http_auth_data_t *auth_data);
59 char *http_auth_basic(const char *username, const char *password);
/hal_espressif-2.7.6/components/esp_http_client/test/
Dtest_http_client.c58 .username = USERNAME,
87 .username = USERNAME,
115 .username = USERNAME,
/hal_espressif-2.7.6/components/esp_http_client/
Desp_http_client.c67 char *username; member
315 *value = client->connection_info.username; in esp_http_client_get_username()
319 esp_err_t esp_http_client_set_username(esp_http_client_handle_t client, const char *username) in esp_http_client_set_username() argument
325 if (client->connection_info.username != NULL) { in esp_http_client_set_username()
326 free(client->connection_info.username); in esp_http_client_set_username()
328 client->connection_info.username = username ? strdup(username) : NULL; in esp_http_client_set_username()
424 if (config->username) { in _set_config()
425 client->connection_info.username = strdup(config->username); in _set_config()
426 HTTP_MEM_CHECK(TAG, client->connection_info.username, { in _set_config()
466 free(client->connection_info.username); in _clear_connection_info()
[all …]
/hal_espressif-2.7.6/examples/protocols/coap_client/main/
DKconfig.projbuild20 string "PSK Client identity (username)"
24 The identity (or username) to use to identify to the CoAP server which
/hal_espressif-2.7.6/components/esp_websocket_client/
Desp_websocket_client.c78 char *username; member
194 if (config->username) { in esp_websocket_client_set_config()
195 free(cfg->username); in esp_websocket_client_set_config()
196 cfg->username = strdup(config->username); in esp_websocket_client_set_config()
197 ESP_WS_CLIENT_MEM_CHECK(TAG, cfg->username, return ESP_ERR_NO_MEM); in esp_websocket_client_set_config()
269 free(cfg->username); in esp_websocket_client_destroy_config()
517 free(client->config->username); in esp_websocket_client_set_uri()
518 client->config->username = strdup(user_info); in esp_websocket_client_set_uri()
519 ESP_WS_CLIENT_MEM_CHECK(TAG, client->config->username, return ESP_ERR_NO_MEM); in esp_websocket_client_set_uri()
/hal_espressif-2.7.6/components/esp_http_client/include/
Desp_http_client.h112 const char *username; /*!< Using for Http authentication */ member
302 esp_err_t esp_http_client_set_username(esp_http_client_handle_t client, const char *username);
/hal_espressif-2.7.6/components/wpa_supplicant/include/esp_supplicant/
Desp_wpa2.h90 esp_err_t esp_wifi_sta_wpa2_ent_set_username(const unsigned char *username, int len);
/hal_espressif-2.7.6/examples/protocols/pppos_client/main/
DKconfig.projbuild24 string "Set username for authentication"
28 Set username for PPP Authentication.
/hal_espressif-2.7.6/docs/zh_CN/get-started/
Dwindows-setup-update.rst21 该工具的下载安装位置由 ESP-IDF 工具安装器的设置决定,默认情况下为: ``C:\Users\username\.espressif``。
/hal_espressif-2.7.6/docs/en/api-reference/protocols/
Desp_http_client.rst154username``, ``password`` of config entry. And with ``auth_type = HTTP_AUTH_TYPE_BASIC``, the HTTP …
170 Config authentication example with username, password entry
179 .username = "user",
Dmqtt.rst38 - ``mqtt://username:password@mqtt.eclipse.org:1884`` MQTT over TCP,
39 port 1884, with username and password
116 * ``username``: pointer to the username used for connecting to the broker
/hal_espressif-2.7.6/components/esp_websocket_client/include/
Desp_websocket_client.h76 …const char *username; /*!< Using for Http authentication - Not s… member
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/esp/blufi/
Dblufi_protocol.c203 param.username.name = &data[0]; in btc_blufi_protocol_handler()
204 param.username.name_len = len; in btc_blufi_protocol_handler()
Dblufi_prf.c755 dst->username.name = osi_malloc(src->username.name_len); in btc_blufi_cb_deep_copy()
756 if (dst->username.name == NULL) { in btc_blufi_cb_deep_copy()
759 memcpy(dst->username.name, src->username.name, src->username.name_len); in btc_blufi_cb_deep_copy()
827 osi_free(param->username.name); in btc_blufi_cb_deep_free()
/hal_espressif-2.7.6/docs/en/get-started/
Dwindows-setup-update.rst21 …ified during ESP-IDF Tools Installer process. By default, this is ``C:\Users\username\.espressif``.
/hal_espressif-2.7.6/components/bt/host/bluedroid/api/include/api/
Desp_blufi_api.h232 …} username; /*!< Blufi callback param of ESP_BLUFI_EVENT_RECV_… member
/hal_espressif-2.7.6/examples/protocols/pppos_client/
DREADME.md39 - Set the username and password for PPP authentication in `Set username for authentication` and `Se…
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl_psk/
DREADME.md21 Note: Last line enables anonymous mode, as this example does not use mqtt username and password.
/hal_espressif-2.7.6/examples/protocols/coap_client/
DREADME.md41 * If PSK, Set CoAP PSK Client identity (username)

12