1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Functions to interface with the SSH_AUTHENTICATION_FD socket.
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
|
|
|
|
2001-08-16 01:04:50 +02:00
|
|
|
/* RCSID("$OpenBSD: authfd.h,v 1.21 2001/08/07 10:37:46 markus Exp $"); */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#ifndef AUTHFD_H
|
|
|
|
#define AUTHFD_H
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
|
|
|
/* Messages for the authentication agent connection. */
|
|
|
|
#define SSH_AGENTC_REQUEST_RSA_IDENTITIES 1
|
|
|
|
#define SSH_AGENT_RSA_IDENTITIES_ANSWER 2
|
|
|
|
#define SSH_AGENTC_RSA_CHALLENGE 3
|
|
|
|
#define SSH_AGENT_RSA_RESPONSE 4
|
|
|
|
#define SSH_AGENT_FAILURE 5
|
|
|
|
#define SSH_AGENT_SUCCESS 6
|
|
|
|
#define SSH_AGENTC_ADD_RSA_IDENTITY 7
|
|
|
|
#define SSH_AGENTC_REMOVE_RSA_IDENTITY 8
|
|
|
|
#define SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES 9
|
|
|
|
|
2000-10-14 07:23:11 +02:00
|
|
|
/* private OpenSSH extensions for SSH2 */
|
2000-07-21 02:19:44 +02:00
|
|
|
#define SSH2_AGENTC_REQUEST_IDENTITIES 11
|
|
|
|
#define SSH2_AGENT_IDENTITIES_ANSWER 12
|
|
|
|
#define SSH2_AGENTC_SIGN_REQUEST 13
|
|
|
|
#define SSH2_AGENT_SIGN_RESPONSE 14
|
|
|
|
#define SSH2_AGENTC_ADD_IDENTITY 17
|
|
|
|
#define SSH2_AGENTC_REMOVE_IDENTITY 18
|
|
|
|
#define SSH2_AGENTC_REMOVE_ALL_IDENTITIES 19
|
|
|
|
|
2001-07-04 05:50:02 +02:00
|
|
|
/* smartcard */
|
|
|
|
#define SSH_AGENTC_ADD_SMARTCARD_KEY 20
|
|
|
|
#define SSH_AGENTC_REMOVE_SMARTCARD_KEY 21
|
|
|
|
|
2001-08-16 01:04:50 +02:00
|
|
|
/* extended failure messages */
|
|
|
|
#define SSH2_AGENT_FAILURE 30
|
|
|
|
|
2000-10-14 07:23:11 +02:00
|
|
|
/* additional error code for ssh.com's ssh-agent2 */
|
2001-07-04 06:46:56 +02:00
|
|
|
#define SSH_COM_AGENT2_FAILURE 102
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2000-09-23 08:15:56 +02:00
|
|
|
#define SSH_AGENT_OLD_SIGNATURE 0x01
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
typedef struct {
|
|
|
|
int fd;
|
|
|
|
Buffer identities;
|
|
|
|
int howmany;
|
|
|
|
} AuthenticationConnection;
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2001-07-04 06:46:56 +02:00
|
|
|
int ssh_get_authentication_socket(void);
|
|
|
|
void ssh_close_authentication_socket(int);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-12-22 02:43:59 +01:00
|
|
|
AuthenticationConnection *ssh_get_authentication_connection(void);
|
2001-07-04 06:46:56 +02:00
|
|
|
void ssh_close_authentication_connection(AuthenticationConnection *);
|
|
|
|
int ssh_get_num_identities(AuthenticationConnection *, int);
|
2001-07-04 06:02:36 +02:00
|
|
|
Key *ssh_get_first_identity(AuthenticationConnection *, char **, int);
|
|
|
|
Key *ssh_get_next_identity(AuthenticationConnection *, char **, int);
|
2001-07-04 06:46:56 +02:00
|
|
|
int ssh_add_identity(AuthenticationConnection *, Key *, const char *);
|
2001-08-06 23:35:51 +02:00
|
|
|
int ssh_remove_identity(AuthenticationConnection *, Key *);
|
2001-07-04 06:46:56 +02:00
|
|
|
int ssh_remove_all_identities(AuthenticationConnection *, int);
|
2001-08-06 23:35:51 +02:00
|
|
|
int ssh_update_card(AuthenticationConnection *, int, const char *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-04-16 03:18:38 +02:00
|
|
|
int
|
2001-07-04 06:02:36 +02:00
|
|
|
ssh_decrypt_challenge(AuthenticationConnection *, Key *, BIGNUM *, u_char[16],
|
|
|
|
u_int, u_char[16]);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-04-16 03:18:38 +02:00
|
|
|
int
|
2001-07-04 06:46:56 +02:00
|
|
|
ssh_agent_sign(AuthenticationConnection *, Key *, u_char **, int *, u_char *,
|
|
|
|
int);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
#endif /* AUTHFD_H */
|