Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dauth2.c77 Authmethod *authmethods[] = { variable
506 for (i = 0; authmethods[i] != NULL; i++) { in authmethods_get()
507 if (strcmp(authmethods[i]->cfg->name, "none") == 0) in authmethods_get()
509 if (authmethods[i]->cfg->enabled == NULL || in authmethods_get()
510 *(authmethods[i]->cfg->enabled) == 0) in authmethods_get()
512 if (!auth2_method_allowed(authctxt, authmethods[i]->cfg->name, in authmethods_get()
516 authmethods[i]->cfg->name)) != 0) in authmethods_get()
532 for (i = 0; authmethods[i] != NULL; i++) { in authmethod_byname()
533 if (strcmp(name, authmethods[i]->cfg->name) == 0 || in authmethod_byname()
534 (authmethods[i]->cfg->synonym != NULL && in authmethod_byname()
[all …]
H A Dsshconnect2.c389 Authmethod authmethods[] = { variable
2303 for (method = authmethods; method->name != NULL; method++) in authmethod_lookup()
2370 for (method = authmethods; method->name != NULL; method++) { in authmethods_get()