Home
last modified time | relevance | path

Searched refs:hostkeyalgorithms (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/crypto/openssh/
H A Dreadconf.h69 char *hostkeyalgorithms; /* SSH2 server key types in order of preference. */ member
H A Dservconf.h112 char *hostkeyalgorithms; /* SSH2 server key types */ member
H A Dservconf.c121 options->hostkeyalgorithms = NULL; in initialize_server_options()
212 ASSEMBLE(hostkeyalgorithms, KEX_DEFAULT_PK_ALG, all_key); in assemble_algorithms()
1450 charptr = &options->hostkeyalgorithms; in process_server_config_line()
2630 dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms ? in dump_config()
2631 o->hostkeyalgorithms : KEX_DEFAULT_PK_ALG); in dump_config()
H A Dsshconnect2.c180 if (options.hostkeyalgorithms != NULL) { in ssh_kex2()
182 if (kex_assemble_names(&options.hostkeyalgorithms, in ssh_kex2()
187 compat_pkalg_proposal(options.hostkeyalgorithms); in ssh_kex2()
190 options.hostkeyalgorithms = xstrdup(KEX_DEFAULT_PK_ALG); in ssh_kex2()
H A Dreadconf.c1221 charptr = &options->hostkeyalgorithms; in process_config_line_depth()
1866 options->hostkeyalgorithms = NULL; in initialize_options()
2583 if (kex_assemble_names( &o->hostkeyalgorithms, in dump_client_config()
2646 dump_cfg_string(oHostKeyAlgorithms, o->hostkeyalgorithms); in dump_client_config()
H A Dclientloop.c1990 const char *hostkeyalgs = options.hostkeyalgorithms != NULL ? in key_accepted_by_hostkeyalgs()
1991 options.hostkeyalgorithms : KEX_DEFAULT_PK_ALG; in key_accepted_by_hostkeyalgs()
H A Dsshd.c715 if (match_pattern_list(s, options.hostkeyalgorithms, 0) != 1) {