Lines Matching +full:mic +full:- +full:cfg
35 * auth2-*.c because we want to query it during server configuration validity
49 "publickey-hostbound-v00@openssh.com",
54 "gssapi-with-mic",
65 "keyboard-interactive",
88 * Check a comma-separated list of methods for validity. If need_enable is
89 * non-zero, then also require that the methods are enabled.
90 * Returns 0 on success or -1 if the methods list is invalid.
97 int ret = -1; in auth2_methods_valid()
98 const struct authmethod_cfg *cfg; in auth2_methods_valid() local
102 return -1; in auth2_methods_valid()
107 cfg = authmethod_cfgs[i]; in auth2_methods_valid()
110 if (strcmp(method, cfg->name) != 0) in auth2_methods_valid()
113 if (cfg->enabled == NULL || in auth2_methods_valid()
114 *(cfg->enabled) == 0) { in auth2_methods_valid()