summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/authfile.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2002-05-23 19:24:32 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2002-05-23 19:24:32 +0000
commitf9af44845483e4aa0ad9f50a4b683b306722d93e (patch)
tree1fa2dfb1a9ba835c50cc1a79bec5e90bc6829c65 /usr.bin/ssh/authfile.h
parent0c6ba561e82f6676f56adebb7f07e20a76a24207 (diff)
add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication
in protocol v2 (needs to access the hostkeys).
Diffstat (limited to 'usr.bin/ssh/authfile.h')
-rw-r--r--usr.bin/ssh/authfile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.h b/usr.bin/ssh/authfile.h
index c614ca12ce8..7f92701ec05 100644
--- a/usr.bin/ssh/authfile.h
+++ b/usr.bin/ssh/authfile.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfile.h,v 1.9 2002/03/04 17:27:39 stevesk Exp $ */
+/* $OpenBSD: authfile.h,v 1.10 2002/05/23 19:24:30 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -20,5 +20,6 @@ Key *key_load_public(const char *, char **);
Key *key_load_public_type(int, const char *, char **);
Key *key_load_private(const char *, const char *, char **);
Key *key_load_private_type(int, const char *, const char *, char **);
+Key *key_load_private_pem(int, int, const char *, char **);
#endif