comparison ssh.h @ 500:d588e3ea557a agent-client

propagate from branch 'au.asn.ucc.matt.dropbear' (head 4fb35083f0f46ea667e7043e7d4314aecd3df46c) to branch 'au.asn.ucc.matt.dropbear.cli-agent' (head 833d0adef6cdbf43ea75283524c665e70b0ee1ee)
author Matt Johnston <matt@ucc.asn.au>
date Tue, 23 Sep 2008 16:05:04 +0000
parents 79bf1023cf11
children d32bcb5c557d
comparison
equal deleted inserted replaced
499:f3ca5ebc319a 500:d588e3ea557a
103 /* public key types */ 103 /* public key types */
104 #define SSH_SIGNKEY_DSS "ssh-dss" 104 #define SSH_SIGNKEY_DSS "ssh-dss"
105 #define SSH_SIGNKEY_DSS_LEN 7 105 #define SSH_SIGNKEY_DSS_LEN 7
106 #define SSH_SIGNKEY_RSA "ssh-rsa" 106 #define SSH_SIGNKEY_RSA "ssh-rsa"
107 #define SSH_SIGNKEY_RSA_LEN 7 107 #define SSH_SIGNKEY_RSA_LEN 7
108
109 /* Agent commands. These aren't part of the spec, and are defined
110 * only on the openssh implementation. */
111 #define SSH_AGENT_FAILURE 5
112 #define SSH_AGENT_SUCCESS 6
113 #define SSH2_AGENTC_REQUEST_IDENTITIES 11
114 #define SSH2_AGENT_IDENTITIES_ANSWER 12
115 #define SSH2_AGENTC_SIGN_REQUEST 13
116 #define SSH2_AGENT_SIGN_RESPONSE 14
117
118 #define SSH2_AGENT_FAILURE 30