diff options
author | Damien Miller <djm@mindrot.org> | 2001-12-21 12:47:09 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-12-21 12:47:09 +1100 |
commit | 5b2aea949419fc5ca0dd79fdbf07d5af657b0e22 (patch) | |
tree | d00d45c1e53c101c1dbff775a343e09b7086abb0 /hostfile.c | |
parent | 83c02ef6239a763483b5f2dc7ffdb4b5f713052b (diff) | |
download | openssh-git-5b2aea949419fc5ca0dd79fdbf07d5af657b0e22.tar.gz |
- jakob@cvs.openbsd.org 2001/12/18 10:04:21
[auth.h hostfile.c hostfile.h]
remove auth_rsa_read_key, make hostfile_ready_key non static; ok markus@
Diffstat (limited to 'hostfile.c')
-rw-r--r-- | hostfile.c | 15 |
1 files changed, 2 insertions, 13 deletions
@@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: hostfile.c,v 1.28 2001/06/25 08:25:37 markus Exp $"); +RCSID("$OpenBSD: hostfile.c,v 1.29 2001/12/18 10:04:21 jakob Exp $"); #include "packet.h" #include "match.h" @@ -49,7 +49,7 @@ RCSID("$OpenBSD: hostfile.c,v 1.28 2001/06/25 08:25:37 markus Exp $"); * pointer over the key. Skips any whitespace at the beginning and at end. */ -static int +int hostfile_read_key(char **cpp, u_int *bitsp, Key *ret) { char *cp; @@ -71,17 +71,6 @@ hostfile_read_key(char **cpp, u_int *bitsp, Key *ret) return 1; } -int -auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n) -{ - Key *k = key_new(KEY_RSA1); - int ret = hostfile_read_key(cpp, bitsp, k); - BN_copy(e, k->rsa->e); - BN_copy(n, k->rsa->n); - key_free(k); - return ret; -} - static int hostfile_check_key(int bits, Key *key, const char *host, const char *filename, int linenum) { |