Home
last modified time | relevance | path

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

/dragonfly/crypto/openssh/
H A Dkexgen.c54 const struct sshbuf *server_host_key_blob, in kex_gen_hash() argument
76 (r = sshbuf_put_stringb(b, server_host_key_blob)) != 0 || in kex_gen_hash()
145 struct sshbuf *tmp = NULL, *server_host_key_blob = NULL; in input_kex_gen_reply() local
155 if ((r = sshpkt_getb_froms(ssh, &server_host_key_blob)) != 0) in input_kex_gen_reply()
158 if ((tmp = sshbuf_fromb(server_host_key_blob)) == NULL) { in input_kex_gen_reply()
210 server_host_key_blob, in input_kex_gen_reply()
246 sshbuf_free(server_host_key_blob); in input_kex_gen_reply()
273 struct sshbuf *server_host_key_blob = NULL; in input_kex_gen_init() local
321 if ((server_host_key_blob = sshbuf_new()) == NULL) { in input_kex_gen_init()
334 server_host_key_blob, in input_kex_gen_init()
[all …]
H A Dkexgexs.c134 struct sshbuf *server_host_key_blob = NULL; in input_kex_dh_gex_init() local
158 if ((server_host_key_blob = sshbuf_new()) == NULL) { in input_kex_dh_gex_init()
162 if ((r = sshkey_putb(server_host_public, server_host_key_blob)) != 0) in input_kex_dh_gex_init()
175 server_host_key_blob, in input_kex_dh_gex_init()
191 (r = sshpkt_put_stringb(ssh, server_host_key_blob)) != 0 || in input_kex_dh_gex_init()
213 sshbuf_free(server_host_key_blob); in input_kex_dh_gex_init()
H A Dkexgexc.c151 struct sshbuf *tmp = NULL, *server_host_key_blob = NULL; in input_kex_dh_gex_reply() local
162 if ((r = sshpkt_getb_froms(ssh, &server_host_key_blob)) != 0) in input_kex_dh_gex_reply()
165 if ((tmp = sshbuf_fromb(server_host_key_blob)) == NULL) { in input_kex_dh_gex_reply()
196 server_host_key_blob, in input_kex_dh_gex_reply()
237 sshbuf_free(server_host_key_blob); in input_kex_dh_gex_reply()
H A Dkexgex.c53 const struct sshbuf *server_host_key_blob, in kexgex_hash() argument
78 (r = sshbuf_put_stringb(b, server_host_key_blob)) != 0 || in kexgex_hash()