Home
last modified time | relevance | path

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

/external/openssh/
Dauth2.c404 if (list_starts_with(authctxt->auth_methods[i], method, in auth2_method_allowed()
519 authctxt->auth_methods = xcalloc(options.num_auth_methods, in auth2_setup_methods_lists()
520 sizeof(*authctxt->auth_methods)); in auth2_setup_methods_lists()
523 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) { in auth2_setup_methods_lists()
526 options.auth_methods[i]); in auth2_setup_methods_lists()
530 authctxt->num_auth_methods, options.auth_methods[i]); in auth2_setup_methods_lists()
531 authctxt->auth_methods[authctxt->num_auth_methods++] = in auth2_setup_methods_lists()
532 xstrdup(options.auth_methods[i]); in auth2_setup_methods_lists()
608 if (!remove_method(&(authctxt->auth_methods[i]), method, in auth2_update_methods_lists()
612 if (*authctxt->auth_methods[i] == '\0') { in auth2_update_methods_lists()
[all …]
Dservconf.h189 char *auth_methods[MAX_AUTH_METHODS]; member
230 M_CP_STRARRAYOPT(auth_methods, num_auth_methods); \
Dauth.h70 char **auth_methods; /* modified from server config */ member
Dservconf.c370 strcmp(options->auth_methods[0], "any") == 0) { in fill_default_server_options()
371 free(options->auth_methods[0]); in fill_default_server_options()
372 options->auth_methods[0] = NULL; in fill_default_server_options()
1810 options->auth_methods[ in process_server_config_line()
2341 o->num_auth_methods, o->auth_methods); in dump_config()
Dsshd.c1667 if (auth2_methods_valid(options.auth_methods[n],
/external/curl/lib/
Dssh.h151 int auth_methods; member
Dssh-libssh.c453 if(sshc->auth_methods & SSH_AUTH_METHOD_PASSWORD) { \
463 if(sshc->auth_methods & SSH_AUTH_METHOD_INTERACTIVE) { \
473 if(sshc->auth_methods & SSH_AUTH_METHOD_GSSAPI_MIC) { \
626 sshc->auth_methods = ssh_userauth_list(sshc->ssh_session, NULL); in myssh_statemach_act()
627 if(sshc->auth_methods & SSH_AUTH_METHOD_PUBLICKEY) { in myssh_statemach_act()
631 else if(sshc->auth_methods & SSH_AUTH_METHOD_GSSAPI_MIC) { in myssh_statemach_act()
634 else if(sshc->auth_methods & SSH_AUTH_METHOD_INTERACTIVE) { in myssh_statemach_act()
637 else if(sshc->auth_methods & SSH_AUTH_METHOD_PASSWORD) { in myssh_statemach_act()