Home
last modified time | relevance | path

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

/external/openssh/
Dauth2.c466 if (list_starts_with(authctxt->auth_methods[i], method, in auth2_method_allowed()
580 strcmp(options.auth_methods[0], "any") == 0) { in auth2_setup_methods_lists()
581 free(options.auth_methods[0]); in auth2_setup_methods_lists()
582 options.auth_methods[0] = NULL; in auth2_setup_methods_lists()
589 authctxt->auth_methods = xcalloc(options.num_auth_methods, in auth2_setup_methods_lists()
590 sizeof(*authctxt->auth_methods)); in auth2_setup_methods_lists()
593 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) { in auth2_setup_methods_lists()
596 options.auth_methods[i]); in auth2_setup_methods_lists()
600 authctxt->num_auth_methods, options.auth_methods[i]); in auth2_setup_methods_lists()
601 authctxt->auth_methods[authctxt->num_auth_methods++] = in auth2_setup_methods_lists()
[all …]
Dservconf.h220 char **auth_methods; member
279 M_CP_STRARRAYOPT(auth_methods, num_auth_methods); \
Dauth.h68 char **auth_methods; /* modified from server config */ member
Dservconf.c496 strcmp(options->auth_methods[0], "any") == 0) { in fill_default_server_options()
497 free(options->auth_methods[0]); in fill_default_server_options()
498 options->auth_methods[0] = NULL; in fill_default_server_options()
2295 &options->auth_methods, in process_server_config_line_depth()
2883 o->num_auth_methods, o->auth_methods); in dump_config()
Dsshd.c1732 if (auth2_methods_valid(options.auth_methods[i],
/external/arm-trusted-firmware/lib/fconf/
Dfconf_cot_getter.c33 static auth_method_desc_t auth_methods[MAX_NUMBER_IDS * AUTH_METHOD_NUM]; variable
34 static OBJECT_POOL_ARRAY(auth_methods_pool, auth_methods);
/external/curl/lib/vssh/
Dssh.h154 int auth_methods; member
Dlibssh.c563 if(sshc->auth_methods & SSH_AUTH_METHOD_PASSWORD) { \
573 if(sshc->auth_methods & SSH_AUTH_METHOD_INTERACTIVE) { \
583 if(sshc->auth_methods & SSH_AUTH_METHOD_GSSAPI_MIC) { \
736 sshc->auth_methods = ssh_userauth_list(sshc->ssh_session, NULL); in myssh_statemach_act()
737 if(sshc->auth_methods & SSH_AUTH_METHOD_PUBLICKEY) { in myssh_statemach_act()
741 else if(sshc->auth_methods & SSH_AUTH_METHOD_GSSAPI_MIC) { in myssh_statemach_act()
744 else if(sshc->auth_methods & SSH_AUTH_METHOD_INTERACTIVE) { in myssh_statemach_act()
747 else if(sshc->auth_methods & SSH_AUTH_METHOD_PASSWORD) { in myssh_statemach_act()