Symbol: kex_params
crypto/openssh/regress/misc/fuzz-harness/kex_fuzz.cc
180
struct kex_params kex_params;
crypto/openssh/regress/misc/fuzz-harness/kex_fuzz.cc
220
memcpy(kex_params.proposal, myproposal, sizeof(myproposal));
crypto/openssh/regress/misc/fuzz-harness/kex_fuzz.cc
221
if ((r = ssh_init(&client, 0, &kex_params)) != 0) {
crypto/openssh/regress/misc/fuzz-harness/kex_fuzz.cc
225
if ((r = ssh_init(&server, 1, &kex_params)) != 0) {
crypto/openssh/regress/unittests/kex/test_kex.c
102
memcpy(kex_params.proposal, myproposal, sizeof(myproposal));
crypto/openssh/regress/unittests/kex/test_kex.c
104
kex_params.proposal[PROPOSAL_KEX_ALGS] = kex;
crypto/openssh/regress/unittests/kex/test_kex.c
106
kex_params.proposal[PROPOSAL_ENC_ALGS_CTOS] = cipher;
crypto/openssh/regress/unittests/kex/test_kex.c
107
kex_params.proposal[PROPOSAL_ENC_ALGS_STOC] = cipher;
crypto/openssh/regress/unittests/kex/test_kex.c
110
kex_params.proposal[PROPOSAL_MAC_ALGS_CTOS] = mac;
crypto/openssh/regress/unittests/kex/test_kex.c
111
kex_params.proposal[PROPOSAL_MAC_ALGS_STOC] = mac;
crypto/openssh/regress/unittests/kex/test_kex.c
115
kex_params.proposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = keyname;
crypto/openssh/regress/unittests/kex/test_kex.c
116
ASSERT_INT_EQ(ssh_init(&client, 0, &kex_params), 0);
crypto/openssh/regress/unittests/kex/test_kex.c
117
ASSERT_INT_EQ(ssh_init(&server, 1, &kex_params), 0);
crypto/openssh/regress/unittests/kex/test_kex.c
84
struct kex_params kex_params;
crypto/openssh/ssh_api.c
107
proposal = kex_params ? kex_params->proposal : myproposal;
crypto/openssh/ssh_api.c
87
ssh_init(struct ssh **sshp, int is_server, struct kex_params *kex_params)
crypto/openssh/ssh_api.h
42
int ssh_init(struct ssh **, int is_server, struct kex_params *kex_params);