Home
last modified time | relevance | path

Searched refs:authmethods (Results 1 – 2 of 2) sorted by relevance

/external/openssh/
Dauth2.c79 Authmethod *authmethods[] = { variable
482 for (i = 0; authmethods[i] != NULL; i++) { in authmethods_get()
483 if (strcmp(authmethods[i]->name, "none") == 0) in authmethods_get()
485 if (authmethods[i]->enabled == NULL || in authmethods_get()
486 *(authmethods[i]->enabled) == 0) in authmethods_get()
488 if (!auth2_method_allowed(authctxt, authmethods[i]->name, in authmethods_get()
492 authmethods[i]->name)) != 0) in authmethods_get()
507 for (i = 0; authmethods[i] != NULL; i++) in authmethod_lookup()
508 if (authmethods[i]->enabled != NULL && in authmethod_lookup()
509 *(authmethods[i]->enabled) != 0 && in authmethod_lookup()
[all …]
Dsshconnect2.c347 Authmethod authmethods[] = { variable
2182 for (method = authmethods; method->name != NULL; method++) in authmethod_lookup()
2249 for (method = authmethods; method->name != NULL; method++) { in authmethods_get()