Home | History | Annotate | Download | only in dropbear

Lines Matching refs:password

25 /* Validates a user password */
35 /* Process a password auth request, sending success or failure messages as
43 char * testcrypt = NULL; /* crypt generated from the user's password sent */
44 unsigned char * password;
51 /* get the shadow password if possible */
63 /* check for empty password - need to do this again here
64 * since the shadow password may differ to that tested
67 dropbear_log(LOG_WARNING, "user '%s' has blank password, rejected",
73 /* check if client wants to change password */
81 password = buf_getstring(ses.payload, &passwordlen);
84 testcrypt = crypt((char*)password, passwdcrypt);
85 m_burn(password, passwordlen);
86 m_free(password);
91 "password auth succeeded for '%s' from %s",
97 "bad password attempt for '%s' from %s",