Searched refs:myproposal (Results 1 – 7 of 7) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | ssh-keyscan.c | 239 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT }; in keygrab_ssh2() local 244 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 248 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 257 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 261 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 265 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 274 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 279 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ? in keygrab_ssh2() 287 if ((r = kex_setup(c->c_ssh, myproposal)) != 0) { in keygrab_ssh2()
|
H A D | sshd-session.c | 1438 char *hkalgs = NULL, *myproposal[PROPOSAL_MAX]; in do_ssh2_kex() local 1451 kex_proposal_populate_entries(ssh, myproposal, options.kex_algorithms, in do_ssh2_kex() 1457 if ((r = kex_setup(ssh, myproposal)) != 0) in do_ssh2_kex() 1483 kex_proposal_free_entries(myproposal); in do_ssh2_kex()
|
H A D | ssh_api.c | 89 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT }; in ssh_init() local 107 proposal = kex_params ? kex_params->proposal : myproposal; in ssh_init()
|
H A D | sshconnect2.c | 221 char *myproposal[PROPOSAL_MAX]; in ssh_kex2() local 253 kex_proposal_populate_entries(ssh, myproposal, in ssh_kex2() 261 if ((r = kex_setup(ssh, myproposal)) != 0) in ssh_kex2() 281 kex_proposal_free_entries(myproposal); in ssh_kex2()
|
H A D | .depend | 47 clientloop.o: myproposal.h log.h ssherr.h misc.h readconf.h clientloop.h sshconnect.h authfd.h atom… 66 kex.o: match.h misc.h monitor.h myproposal.h sshbuf.h digest.h xmalloc.h 102 readconf.o: myproposal.h digest.h 115 …anohost.h packet.h dispatch.h hostfile.h auth.h auth-pam.h audit.h loginrec.h myproposal.h digest.h 132 …uthfd.h log.h ssherr.h misc.h digest.h match.h msg.h pathnames.h ssh-pkcs11.h sk-api.h myproposal.h 141 …y1305.h cipher-aesctr.h rijndael.h digest.h kex.h mac.h crypto_api.h compat.h myproposal.h packet.h 152 …adconf.h sshconnect.h kex.h mac.h crypto_api.h sshpty.h match.h msg.h version.h myproposal.h utf8.h 153 ssh_api.o: authfile.h dh.h misc.h version.h myproposal.h sshbuf.h openbsd-compat/openssl-compat.h
|
/freebsd/crypto/openssh/regress/unittests/kex/ |
H A D | test_kex.c | 85 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT }; in do_kex_with_key() local 97 memcpy(kex_params.proposal, myproposal, sizeof(myproposal)); in do_kex_with_key()
|
/freebsd/crypto/openssh/regress/misc/fuzz-harness/ |
H A D | kex_fuzz.cc | 182 char *myproposal[PROPOSAL_MAX] = {0}, *keyname = NULL; in do_kex_with_key() local 215 if ((myproposal[i] = strdup(ccp)) == NULL) { in do_kex_with_key() 220 memcpy(kex_params.proposal, myproposal, sizeof(myproposal)); in do_kex_with_key() 241 free(myproposal[i]); in do_kex_with_key()
|