Home
last modified time | relevance | path

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

/external/iperf3/src/
Diperf_auth.c77 char *s_username, *s_password; in check_authentication() local
99 s_password = strtok(NULL, ","); in check_authentication()
100 if (strcmp( username, s_username ) == 0 && strcmp( passwordHash, s_password ) == 0){ in check_authentication()
323 char *s_username, *s_password; in decode_auth_setting() local
328 s_password = (char *) calloc(plaintext_len, sizeof(char)); in decode_auth_setting()
329 if (s_password == NULL) { in decode_auth_setting()
334 int rc = sscanf((char *) plaintext, auth_text_format, s_username, s_password, ts); in decode_auth_setting()
336 free(s_password); in decode_auth_setting()
343 printf("Auth Token Credentials:\n--> %s %s\n", s_username, s_password); in decode_auth_setting()
346 *password = s_password; in decode_auth_setting()