Searched refs:username (Results 1 – 5 of 5) sorted by relevance
| /iperf/src/ |
| H A D | iperf_auth.c | 67 int check_authentication(const char *username, const char *password, const time_t ts, const char *f… in check_authentication() argument 75 char salted[strlen(username) + strlen(password) + 3]; in check_authentication() 76 sprintf(salted, "{%s}%s", username, password); in check_authentication() 102 if (strcmp( username, s_username ) == 0 && strcmp( passwordHash, s_password ) == 0){ in check_authentication() 283 int encode_auth_setting(const char *username, const char *password, EVP_PKEY *public_key, char **au… in encode_auth_setting() argument 291 const int text_len = strlen(auth_text_format) + strlen(username) + strlen(password) + 32; in encode_auth_setting() 296 snprintf(text, text_len, auth_text_format, username, password, (int64_t)utc_seconds); in encode_auth_setting() 311 …(int enable_debug, const char *authtoken, EVP_PKEY *private_key, char **username, char **password,… in decode_auth_setting() argument 348 *username = s_username; in decode_auth_setting()
|
| H A D | iperf_auth.h | 38 int encode_auth_setting(const char *username, const char *password, EVP_PKEY *public_key, char **au… 39 …(int enable_debug, const char *authtoken, EVP_PKEY *private_key, char **username, char **password,… 40 int check_authentication(const char *username, const char *password, const time_t ts, const char *f…
|
| H A D | iperf_api.c | 1985 char *username = NULL, *password = NULL; in test_is_authorized() local 1987 …g(test->debug, test->settings->authtoken, test->server_rsa_private_key, &username, &password, &ts); in test_is_authorized() 1991 …int ret = check_authentication(username, password, ts, test->server_authorized_users, test->server… in test_is_authorized() 1994 iperf_printf(test, report_authentication_succeeded, username, ts); in test_is_authorized() 1996 free(username); in test_is_authorized() 2001 iperf_printf(test, report_authentication_failed, username, ts); in test_is_authorized() 2003 free(username); in test_is_authorized()
|
| /iperf/docs/ |
| H A D | invoking.rst | 440 --username username 441 username to use for authentication to the iperf server (if built 476 of comma-separated pairs of a username and a corresponding password 486 username and password) is given below: 488 # file format: username,sha256
|
| /iperf/ |
| H A D | RELNOTES.md | 337 * Authentication via a username/password mechanism, coupled with a
|