diff options
author | Damien Miller <djm@mindrot.org> | 2000-07-21 10:19:44 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-07-21 10:19:44 +1000 |
commit | 994cf1426d176e2ee9ba310416544c325e04b155 (patch) | |
tree | 8e8978bcec4c8a2aa83533936f90e7c3070e9def /authfd.h | |
parent | 9dec7762798a4f9268e6033945c6dde44925d853 (diff) |
- (djm) OpenBSD CVS updates:
- markus@cvs.openbsd.org 2000/07/16 02:27:22
[authfd.c authfd.h channels.c clientloop.c ssh-add.c ssh-agent.c ssh.c]
[sshconnect1.c sshconnect2.c]
make ssh-add accept dsa keys (the agent does not)
- djm@cvs.openbsd.org 2000/07/17 19:25:02
[sshd.c]
Another closing of stdin; ok deraadt
- markus@cvs.openbsd.org 2000/07/19 18:33:12
[dsa.c]
missing free, reorder
- markus@cvs.openbsd.org 2000/07/20 16:23:14
[ssh-keygen.1]
document input and output files
Diffstat (limited to 'authfd.h')
-rw-r--r-- | authfd.h | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -13,7 +13,7 @@ | |||
13 | * | 13 | * |
14 | */ | 14 | */ |
15 | 15 | ||
16 | /* RCSID("$OpenBSD: authfd.h,v 1.8 2000/06/20 01:39:38 markus Exp $"); */ | 16 | /* RCSID("$OpenBSD: authfd.h,v 1.9 2000/07/16 08:27:21 markus Exp $"); */ |
17 | 17 | ||
18 | #ifndef AUTHFD_H | 18 | #ifndef AUTHFD_H |
19 | #define AUTHFD_H | 19 | #define AUTHFD_H |
@@ -31,6 +31,16 @@ | |||
31 | #define SSH_AGENTC_REMOVE_RSA_IDENTITY 8 | 31 | #define SSH_AGENTC_REMOVE_RSA_IDENTITY 8 |
32 | #define SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES 9 | 32 | #define SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES 9 |
33 | 33 | ||
34 | #define SSH2_AGENTC_REQUEST_IDENTITIES 11 | ||
35 | #define SSH2_AGENT_IDENTITIES_ANSWER 12 | ||
36 | #define SSH2_AGENTC_SIGN_REQUEST 13 | ||
37 | #define SSH2_AGENT_SIGN_RESPONSE 14 | ||
38 | #define SSH2_AGENT_FAILURE SSH_AGENT_FAILURE | ||
39 | #define SSH2_AGENT_SUCCESS SSH_AGENT_SUCCESS | ||
40 | #define SSH2_AGENTC_ADD_IDENTITY 17 | ||
41 | #define SSH2_AGENTC_REMOVE_IDENTITY 18 | ||
42 | #define SSH2_AGENTC_REMOVE_ALL_IDENTITIES 19 | ||
43 | |||
34 | typedef struct { | 44 | typedef struct { |
35 | int fd; | 45 | int fd; |
36 | Buffer packet; | 46 | Buffer packet; |
@@ -96,7 +106,7 @@ ssh_decrypt_challenge(AuthenticationConnection * auth, | |||
96 | * successfully added. | 106 | * successfully added. |
97 | */ | 107 | */ |
98 | int | 108 | int |
99 | ssh_add_identity(AuthenticationConnection * connection, RSA * key, | 109 | ssh_add_identity(AuthenticationConnection * connection, Key *key, |
100 | const char *comment); | 110 | const char *comment); |
101 | 111 | ||
102 | /* | 112 | /* |