comparison ssh.h @ 225:ca7e76d981d9 agent-client

- progress towards client agent forwarding (incomplete and does not compile)
author Matt Johnston <matt@ucc.asn.au>
date Mon, 18 Jul 2005 14:32:52 +0000
parents c1e5d9195402
children 79bf1023cf11
comparison
equal deleted inserted replaced
224:1dbd2473482f 225:ca7e76d981d9
92 /* public key types */ 92 /* public key types */
93 #define SSH_SIGNKEY_DSS "ssh-dss" 93 #define SSH_SIGNKEY_DSS "ssh-dss"
94 #define SSH_SIGNKEY_DSS_LEN 7 94 #define SSH_SIGNKEY_DSS_LEN 7
95 #define SSH_SIGNKEY_RSA "ssh-rsa" 95 #define SSH_SIGNKEY_RSA "ssh-rsa"
96 #define SSH_SIGNKEY_RSA_LEN 7 96 #define SSH_SIGNKEY_RSA_LEN 7
97
98 /* Agent commands. These aren't part of the spec, and are defined
99 * only on the openssh implementation. */
100 #define SSH_AGENT_FAILURE 5
101 #define SSH_AGENT_SUCCESS 6
102 #define SSH2_AGENTC_REQUEST_IDENTITIES 11
103 #define SSH2_AGENT_IDENTITIES_ANSWER 12
104 #define SSH2_AGENTC_SIGN_REQUEST 13
105 #define SSH2_AGENT_SIGN_RESPONSE 14
106
107 #define SSH2_AGENT_FAILURE 30