2001-07-04 04:46:56 +00:00
|
|
|
/* $OpenBSD: hostfile.h,v 1.9 2001/06/26 17:27:23 markus Exp $ */
|
2001-01-29 07:39:26 +00:00
|
|
|
|
2000-09-16 02:29:08 +00:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* 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".
|
|
|
|
*/
|
2000-03-26 03:04:51 +00:00
|
|
|
#ifndef HOSTFILE_H
|
|
|
|
#define HOSTFILE_H
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
HOST_OK, HOST_NEW, HOST_CHANGED
|
|
|
|
} HostStatus;
|
2000-12-22 01:43:59 +00:00
|
|
|
|
2000-04-16 01:18:38 +00:00
|
|
|
HostStatus
|
2001-07-04 04:02:36 +00:00
|
|
|
check_host_in_hostfile(const char *, const char *, Key *, Key *, int *);
|
2001-07-04 04:46:56 +00:00
|
|
|
int add_host_to_hostfile(const char *, const char *, Key *);
|
|
|
|
int auth_rsa_read_key(char **, u_int *, BIGNUM *, BIGNUM *);
|
2000-03-26 03:04:51 +00:00
|
|
|
|
|
|
|
#endif
|