Searched refs:server_host_key_blob (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | kexgen.c | 54 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() 325 if ((r = sshkey_putb(server_host_public, server_host_key_blob)) != 0) in input_kex_gen_init() [all …]
|
H A D | kexgexs.c | 133 struct sshbuf *server_host_key_blob = NULL; in input_kex_dh_gex_init() local 157 if ((server_host_key_blob = sshbuf_new()) == NULL) { in input_kex_dh_gex_init() 161 if ((r = sshkey_putb(server_host_public, server_host_key_blob)) != 0) in input_kex_dh_gex_init() 174 server_host_key_blob, in input_kex_dh_gex_init() 190 (r = sshpkt_put_stringb(ssh, server_host_key_blob)) != 0 || in input_kex_dh_gex_init() 212 sshbuf_free(server_host_key_blob); in input_kex_dh_gex_init()
|
H A D | kexgexc.c | 151 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 D | kexgex.c | 53 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()
|