Home
last modified time | relevance | path

Searched refs:ecdh_param (Results 1 – 4 of 4) sorted by relevance

/dports/security/dropbear/dropbear-2020.81/
H A Dcli-kex.c73 || !cli_ses.ecdh_param) { in send_msg_kexdh_init()
74 if (cli_ses.ecdh_param) { in send_msg_kexdh_init()
75 free_kexecdh_param(cli_ses.ecdh_param); in send_msg_kexdh_init()
77 cli_ses.ecdh_param = gen_kexecdh_param(); in send_msg_kexdh_init()
79 buf_put_ecc_raw_pubkey_string(ses.writepayload, &cli_ses.ecdh_param->key); in send_msg_kexdh_init()
155 kexecdh_comb_key(cli_ses.ecdh_param, ecdh_qs, hostkey); in recv_msg_kexdh_reply()
178 if (cli_ses.ecdh_param) { in recv_msg_kexdh_reply()
179 free_kexecdh_param(cli_ses.ecdh_param); in recv_msg_kexdh_reply()
180 cli_ses.ecdh_param = NULL; in recv_msg_kexdh_reply()
H A Dsvr-kex.c224 struct kex_ecdh_param *ecdh_param = gen_kexecdh_param(); in send_msg_kexdh_reply() local
225 kexecdh_comb_key(ecdh_param, ecdh_qs, svr_opts.hostkey); in send_msg_kexdh_reply()
227 buf_put_ecc_raw_pubkey_string(ses.writepayload, &ecdh_param->key); in send_msg_kexdh_reply()
228 free_kexecdh_param(ecdh_param); in send_msg_kexdh_reply()
H A Dfuzzer-kexecdh.c59 struct kex_ecdh_param *ecdh_param = ecdh_params[e % NUM_PARAMS]; in LLVMFuzzerTestOneInput() local
64 kexecdh_comb_key(ecdh_param, ecdh_qs, svr_opts.hostkey); in LLVMFuzzerTestOneInput()
H A Dsession.h296 struct kex_ecdh_param *ecdh_param; member