Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dauth2.c78 Authmethod *authmethods[] = { variable
503 for (i = 0; authmethods[i] != NULL; i++) { in authmethods_get()
504 if (strcmp(authmethods[i]->cfg->name, "none") == 0) in authmethods_get()
506 if (authmethods[i]->cfg->enabled == NULL || in authmethods_get()
507 *(authmethods[i]->cfg->enabled) == 0) in authmethods_get()
509 if (!auth2_method_allowed(authctxt, authmethods[i]->cfg->name, in authmethods_get()
513 authmethods[i]->cfg->name)) != 0) in authmethods_get()
529 for (i = 0; authmethods[i] != NULL; i++) { in authmethod_byname()
530 if (strcmp(name, authmethods[i]->cfg->name) == 0 || in authmethod_byname()
531 (authmethods[i]->cfg->synonym != NULL && in authmethod_byname()
[all …]
H A Dsshconnect2.c386 Authmethod authmethods[] = { variable
2289 for (method = authmethods; method->name != NULL; method++) in authmethod_lookup()
2356 for (method = authmethods; method->name != NULL; method++) { in authmethods_get()