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[] = {
500 for (i = 0; authmethods[i] != NULL; i++) { in authmethods_get()
501 if (strcmp(authmethods[i]->cfg->name, "none") == 0) in authmethods_get()
503 if (authmethods[i]->cfg->enabled == NULL || in authmethods_get()
504 *(authmethods[i]->cfg->enabled) == 0) in authmethods_get()
506 if (!auth2_method_allowed(authctxt, authmethods[i]->cfg->name, in authmethods_get()
510 authmethods[i]->cfg->name)) != 0) in authmethods_get()
526 for (i = 0; authmethods[i] != NULL; i++) { in authmethod_byname()
527 if (strcmp(name, authmethods[i]->cfg->name) == 0 || in authmethod_byname()
528 (authmethods[ in authmethod_byname()
78 Authmethod *authmethods[] = { global() variable
[all...]
H A Dsshconnect2.c386 Authmethod authmethods[] = { variable
2287 for (method = authmethods; method->name != NULL; method++) in authmethod_lookup()
2354 for (method = authmethods; method->name != NULL; method++) { in authmethods_get()