Searched refs:server_host_key_blob (Results 1 – 8 of 8) sorted by relevance
/external/openssh/ |
D | kexc25519s.c | 61 u_char *server_host_key_blob = NULL, *signature = NULL; in input_kex_c25519_init() local 108 if ((r = sshkey_to_blob(server_host_public, &server_host_key_blob, in input_kex_c25519_init() 118 server_host_key_blob, sbloblen, in input_kex_c25519_init() 143 (r = sshpkt_put_string(ssh, server_host_key_blob, sbloblen)) != 0 || in input_kex_c25519_init() 154 free(server_host_key_blob); in input_kex_c25519_init()
|
D | kexc25519c.c | 79 u_char *server_host_key_blob = NULL, *signature = NULL; in input_kex_c25519_reply() local 90 if ((r = sshpkt_get_string(ssh, &server_host_key_blob, in input_kex_c25519_reply() 92 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_c25519_reply() 137 server_host_key_blob, sbloblen, in input_kex_c25519_reply() 164 free(server_host_key_blob); in input_kex_c25519_reply()
|
D | kexecdhs.c | 71 u_char *server_host_key_blob = NULL, *signature = NULL; in input_kex_ecdh_init() local 142 if ((r = sshkey_to_blob(server_host_public, &server_host_key_blob, in input_kex_ecdh_init() 153 server_host_key_blob, sbloblen, in input_kex_ecdh_init() 181 (r = sshpkt_put_string(ssh, server_host_key_blob, sbloblen)) != 0 || in input_kex_ecdh_init() 203 free(server_host_key_blob); in input_kex_ecdh_init()
|
D | kexecdhc.c | 107 u_char *server_host_key_blob = NULL, *signature = NULL; in input_kex_ecdh_reply() local 122 if ((r = sshpkt_get_string(ssh, &server_host_key_blob, in input_kex_ecdh_reply() 124 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_ecdh_reply() 184 server_host_key_blob, sbloblen, in input_kex_ecdh_reply() 223 free(server_host_key_blob); in input_kex_ecdh_reply()
|
D | kexdhs.c | 100 u_char *kbuf = NULL, *signature = NULL, *server_host_key_blob = NULL; in input_kex_dh_init() local 162 if ((r = sshkey_to_blob(server_host_public, &server_host_key_blob, in input_kex_dh_init() 173 server_host_key_blob, sbloblen, in input_kex_dh_init() 200 (r = sshpkt_put_string(ssh, server_host_key_blob, sbloblen)) != 0 || in input_kex_dh_init() 220 free(server_host_key_blob); in input_kex_dh_init()
|
D | kexdhc.c | 109 u_char *kbuf = NULL, *server_host_key_blob = NULL, *signature = NULL; in input_kex_dh() local 119 if ((r = sshpkt_get_string(ssh, &server_host_key_blob, in input_kex_dh() 121 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_dh() 179 server_host_key_blob, sbloblen, in input_kex_dh() 216 free(server_host_key_blob); in input_kex_dh()
|
D | kexgexs.c | 129 u_char *kbuf = NULL, *signature = NULL, *server_host_key_blob = NULL; in input_kex_dh_gex_init() local 191 if ((r = sshkey_to_blob(server_host_public, &server_host_key_blob, in input_kex_dh_gex_init() 202 server_host_key_blob, sbloblen, in input_kex_dh_gex_init() 231 (r = sshpkt_put_string(ssh, server_host_key_blob, sbloblen)) != 0 || in input_kex_dh_gex_init() 250 free(server_host_key_blob); in input_kex_dh_gex_init()
|
D | kexgexc.c | 152 u_char *kbuf = NULL, *signature = NULL, *server_host_key_blob = NULL; in input_kex_dh_gex_reply() local 163 if ((r = sshpkt_get_string(ssh, &server_host_key_blob, in input_kex_dh_gex_reply() 165 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_dh_gex_reply() 229 server_host_key_blob, sbloblen, in input_kex_dh_gex_reply() 268 free(server_host_key_blob); in input_kex_dh_gex_reply()
|