Searched refs:authlist (Results 1 – 5 of 5) sorted by relevance
/external/openssh/ |
D | sshconnect2.c | 280 char *authlist; member 343 static Authmethod *authmethod_get(char *authlist); 403 authctxt.authlist = NULL; in ssh_userauth2() 481 userauth(struct ssh *ssh, char *authlist) in userauth() argument 490 if (authlist == NULL) { in userauth() 491 authlist = authctxt->authlist; in userauth() 493 free(authctxt->authlist); in userauth() 494 authctxt->authlist = authlist; in userauth() 497 Authmethod *method = authmethod_get(authlist); in userauth() 500 authctxt->server_user, authctxt->host, authlist); in userauth() [all …]
|
/external/curl/lib/vssh/ |
D | ssh.h | 119 const char *authlist; /* List of auth. methods, managed by libssh2 */ member
|
D | libssh2.c | 874 sshc->authlist = libssh2_userauth_list(sshc->ssh_session, in ssh_statemach_act() 878 if(!sshc->authlist) { in ssh_statemach_act() 895 sshc->authlist); in ssh_statemach_act() 908 (strstr(sshc->authlist, "publickey") != NULL)) { in ssh_statemach_act() 1022 (strstr(sshc->authlist, "password") != NULL)) { in ssh_statemach_act() 1053 (strstr(sshc->authlist, "hostbased") != NULL)) { in ssh_statemach_act() 1068 && (strstr(sshc->authlist, "publickey") != NULL)) { in ssh_statemach_act() 1161 && (strstr(sshc->authlist, "keyboard-interactive") != NULL)) { in ssh_statemach_act()
|
/external/python/cpython3/Lib/ |
D | smtplib.py | 711 authlist = [auth for auth in preferred_auths 713 if not authlist: 720 for authmethod in authlist:
|
/external/python/cpython2/Lib/ |
D | smtplib.py | 589 authlist = self.esmtp_features["auth"].split() 599 if method in authlist:
|