Lines Matching refs:ssh
50 #include "ssh.h"
76 #include "ssh-gss.h"
95 verify_host_key_callback(Key *hostkey, struct ssh *ssh)
369 packet_put_cstring("ssh-userauth");
395 authctxt.service = "ssh-connection"; /* service name */
1036 "ssh-userauth" :
1581 struct ssh *ssh = active_state;
1656 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1695 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
1696 (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
1697 (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
1698 (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
1699 (r = sshpkt_put_cstring(ssh, key_ssh_name(private))) != 0 ||
1700 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
1701 (r = sshpkt_put_cstring(ssh, chost)) != 0 ||
1702 (r = sshpkt_put_cstring(ssh, authctxt->local_user)) != 0 ||
1703 (r = sshpkt_put_string(ssh, sig, siglen)) != 0 ||
1704 (r = sshpkt_send(ssh)) != 0) {