/hal_espressif-2.7.6/components/wpa_supplicant/src/eap_peer/ |
D | mschapv2.c | 12 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()
|
D | mschapv2.h | 14 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len); 15 int mschapv2_derive_response(const u8 *username, size_t username_len,
|
D | eap_mschapv2.c | 371 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/ |
D | http_auth.c | 70 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() 128 …username, 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/ |
D | ms_funcs.c | 82 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()
|
D | ms_funcs.h | 11 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/ |
D | http_auth.h | 46 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/ |
D | test_http_client.c | 58 .username = USERNAME, 87 .username = USERNAME, 115 .username = USERNAME,
|
/hal_espressif-2.7.6/components/esp_http_client/ |
D | esp_http_client.c | 67 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/ |
D | Kconfig.projbuild | 20 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/ |
D | esp_websocket_client.c | 78 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/ |
D | esp_http_client.h | 112 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/ |
D | esp_wpa2.h | 90 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/ |
D | Kconfig.projbuild | 24 string "Set username for authentication" 28 Set username for PPP Authentication.
|
/hal_espressif-2.7.6/docs/zh_CN/get-started/ |
D | windows-setup-update.rst | 21 该工具的下载安装位置由 ESP-IDF 工具安装器的设置决定,默认情况下为: ``C:\Users\username\.espressif``。
|
/hal_espressif-2.7.6/docs/en/api-reference/protocols/ |
D | esp_http_client.rst | 154 …username``, ``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",
|
D | mqtt.rst | 38 - ``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/ |
D | esp_websocket_client.h | 76 …const char *username; /*!< Using for Http authentication - Not s… member
|
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/esp/blufi/ |
D | blufi_protocol.c | 203 param.username.name = &data[0]; in btc_blufi_protocol_handler() 204 param.username.name_len = len; in btc_blufi_protocol_handler()
|
D | blufi_prf.c | 755 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/ |
D | windows-setup-update.rst | 21 …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/ |
D | esp_blufi_api.h | 232 …} username; /*!< Blufi callback param of ESP_BLUFI_EVENT_RECV_… member
|
/hal_espressif-2.7.6/examples/protocols/pppos_client/ |
D | README.md | 39 - 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/ |
D | README.md | 21 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/ |
D | README.md | 41 * If PSK, Set CoAP PSK Client identity (username)
|