diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-06 19:57:33 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-06 19:57:33 +0000 |
commit | 1bad256822046e2cc9e3a85a1c622e4ebaa2b97e (patch) | |
tree | 555991823221bbb1cbd3c13c1518349a0e06829b /authfile.h | |
parent | f666fec2d553955c26c999cb687877454eeca3ee (diff) | |
download | openssh-git-1bad256822046e2cc9e3a85a1c622e4ebaa2b97e.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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |