Home
last modified time | relevance | path

Searched refs:s_password (Results 1 – 1 of 1) sorted by relevance

/iperf/src/
H A Diperf_auth.c79 char *s_username, *s_password; in check_authentication() local
101 s_password = strtok(NULL, ","); in check_authentication()
102 if (strcmp( username, s_username ) == 0 && strcmp( passwordHash, s_password ) == 0){ in check_authentication()
326 char *s_username, *s_password; in decode_auth_setting() local
331 s_password = (char *) calloc(plaintext_len, sizeof(char)); in decode_auth_setting()
332 if (s_password == NULL) { in decode_auth_setting()
337 int rc = sscanf((char *) plaintext, auth_text_format, s_username, s_password, &utc_seconds); in decode_auth_setting()
339 free(s_password); in decode_auth_setting()
346 printf("Auth Token Credentials:\n--> %s %s\n", s_username, s_password); in decode_auth_setting()
349 *password = s_password; in decode_auth_setting()