Home
last modified time | relevance | path

Searched refs:SSH2_MSG_KEXINIT (Results 1 – 11 of 11) sorted by relevance

/external/openssh/
Dkexecdh.c74 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kex_ecdh_hash()
77 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kex_ecdh_hash()
Dkexdh.c67 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kex_dh_hash()
70 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kex_dh_hash()
Dkexgex.c71 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kexgex_hash()
74 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kexgex_hash()
Dkexc25519.c103 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) < 0 || in kex_c25519_hash()
106 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) < 0 || in kex_c25519_hash()
Droaming_client.c148 packet_start(SSH2_MSG_KEXINIT); in roaming_resume()
170 if ((type = packet_read()) != SSH2_MSG_KEXINIT) { in roaming_resume()
Dssh2.h86 #define SSH2_MSG_KEXINIT 20 macro
Dkex.c251 ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit); in kex_reset_dispatch()
309 if ((r = sshpkt_start(ssh, SSH2_MSG_KEXINIT)) != 0 || in kex_send_kexinit()
Dssh_api.c253 type >= SSH2_MSG_KEXINIT && type <= SSH2_MSG_TRANSPORT_MAX && in ssh_packet_next()
Dserverloop.c1384 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in server_init_dispatch_20()
Dclientloop.c2605 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in client_init_dispatch_20()
Dpacket.c1231 if (type == SSH2_MSG_KEXINIT) in ssh_packet_send2()