Searched refs:passwdcrypt (Results 1 - 1 of 1) sorted by relevance

/external/dropbear/
H A Dsvr-authpasswd.c42 char * passwdcrypt = NULL; /* the crypt from /etc/passwd or /etc/shadow */ local
49 passwdcrypt = ses.authstate.pw->pw_passwd;
54 passwdcrypt = spasswd->sp_pwdp;
60 passwdcrypt = DEBUG_HACKCRYPT;
66 if (passwdcrypt[0] == '\0') {
83 /* the first bytes of passwdcrypt are the salt */
84 testcrypt = crypt((char*)password, passwdcrypt);
88 if (strcmp(testcrypt, passwdcrypt) == 0) {

Completed in 196 milliseconds