Lines Matching defs:ssh
50 #include "ssh.h"
76 #include "ssh-gss.h"
95 verify_host_key_callback(Key *hostkey, struct ssh *ssh)
376 packet_put_cstring("ssh-userauth");
402 authctxt.service = "ssh-connection"; /* service name */
1043 "ssh-userauth" :
1577 struct ssh *ssh = active_state;
1653 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1692 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
1693 (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
1694 (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
1695 (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
1696 (r = sshpkt_put_cstring(ssh, key_ssh_name(private))) != 0 ||
1697 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
1698 (r = sshpkt_put_cstring(ssh, chost)) != 0 ||
1699 (r = sshpkt_put_cstring(ssh, authctxt->local_user)) != 0 ||
1700 (r = sshpkt_put_string(ssh, sig, siglen)) != 0 ||
1701 (r = sshpkt_send(ssh)) != 0) {