diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-02-09 03:11:24 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-02-09 03:11:24 +0100 |
commit | 31ca54aa86a90052f8fe73fda66c7f39fd5079bc (patch) | |
tree | 91bf4097b9145323fd2aee645a2a42348e33b22e /hostfile.h | |
parent | - (djm) Add CVS Id's to files that we have missed (diff) | |
download | openssh-31ca54aa86a90052f8fe73fda66c7f39fd5079bc.tar.xz openssh-31ca54aa86a90052f8fe73fda66c7f39fd5079bc.zip |
- itojun@cvs.openbsd.org 2001/02/08 19:30:52
sync with netbsd tree changes.
- more strict prototypes, include necessary headers
- use paths.h/pathnames.h decls
- size_t typecase to int -> u_long
Diffstat (limited to 'hostfile.h')
-rw-r--r-- | hostfile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hostfile.h b/hostfile.h index e1f5d164a..346bcd9ba 100644 --- a/hostfile.h +++ b/hostfile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hostfile.h,v 1.6 2001/01/29 01:58:16 niklas Exp $ */ +/* $OpenBSD: hostfile.h,v 1.7 2001/02/08 19:30:51 itojun Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -14,6 +14,9 @@ #ifndef HOSTFILE_H #define HOSTFILE_H +int +auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n); + /* * Checks whether the given host is already in the list of our known hosts. * Returns HOST_OK if the host is known and has the specified key, HOST_NEW |