Lines Matching refs:password
77 auth_password(struct ssh *ssh, const char *password) in auth_password() argument
86 if (strlen(password) > MAX_PASSWORD_LEN) in auth_password()
93 if (*password == '\0' && options.permit_empty_passwd == 0) in auth_password()
98 int ret = auth_krb5_password(authctxt, password); in auth_password()
106 HANDLE hToken = cygwin_logon_user(pw, password); in auth_password()
116 return (sshpam_auth_passwd(authctxt, password) && ok); in auth_password()
125 result = sys_auth_passwd(ssh, password); in auth_password()
167 sys_auth_passwd(struct ssh *ssh, const char *password) in sys_auth_passwd() argument
174 (char *)password); in sys_auth_passwd()
192 sys_auth_passwd(struct ssh *ssh, const char *password) in sys_auth_passwd() argument
205 if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0) in sys_auth_passwd()
214 encrypted_password = xcrypt(password, salt); in sys_auth_passwd()