summaryrefslogtreecommitdiff
path: root/authfile.h
diff options
context:
space:
mode:
authormouring <mouring>2002-06-06 19:57:33 +0000
committermouring <mouring>2002-06-06 19:57:33 +0000
commitca29d1c31bc499fa3f2a28409458c3f04dbc619b (patch)
tree82bde9e8a9b7705f17dca0386e8d2dc4fa84019d /authfile.h
parentc7a1570c6190cf92bf41c5046cabfcf0842b6f68 (diff)
downloadopenssh-ca29d1c31bc499fa3f2a28409458c3f04dbc619b.tar.gz
- markus@cvs.openbsd.org 2002/05/23 19:24:30
[authfile.c authfile.h pathnames.h ssh.c sshconnect.c sshconnect.h sshconnect1.c sshconnect2.c ssh-keysign.8 ssh-keysign.c Makefile.in] add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication in protocol v2 (needs to access the hostkeys). Note: Makefile.in untested. Will test after merge is finished.
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/authfile.h b/authfile.h
index c614ca12..7f92701e 100644
--- a/authfile.h
+++ b/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