Home
last modified time | relevance | path

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

/external/openssh/
Dkexdh.c68 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kex_dh_hash()
71 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) != 0 || in kex_dh_hash()
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()
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.c108 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) < 0 || in kex_c25519_hash()
111 (r = sshbuf_put_u8(b, SSH2_MSG_KEXINIT)) < 0 || in kex_c25519_hash()
Dssh2.h91 #define SSH2_MSG_KEXINIT 20 macro
Dkex.c433 ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit); in kex_input_newkeys()
467 if ((r = sshpkt_start(ssh, SSH2_MSG_KEXINIT)) != 0 || in kex_send_kexinit()
491 ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, NULL); in kex_input_kexinit()
548 ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit); in kex_new()
Dssh_api.c257 type >= SSH2_MSG_KEXINIT && type <= SSH2_MSG_TRANSPORT_MAX && in ssh_packet_next()
Dserverloop.c866 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in server_init_dispatch()
Dclientloop.c2708 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in client_init_dispatch_20()
Dpacket.c1356 if (type == SSH2_MSG_KEXINIT) in ssh_packet_send2()