summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/authfile.h
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2011-05-04 21:15:30 +0000
committerDamien Miller <djm@cvs.openbsd.org>2011-05-04 21:15:30 +0000
commit720482d2a02e97543eb092f715c55bf9b396ae3c (patch)
treecca1e18b2a457af33befd409e84a461d8d5bd552 /usr.bin/ssh/authfile.h
parent861a2e6fa71342a79b303ba0e667caf62805faf3 (diff)
allow "ssh-add - < key"; feedback and ok markus@
Diffstat (limited to 'usr.bin/ssh/authfile.h')
-rw-r--r--usr.bin/ssh/authfile.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.h b/usr.bin/ssh/authfile.h
index 6745dc062be..78349beb561 100644
--- a/usr.bin/ssh/authfile.h
+++ b/usr.bin/ssh/authfile.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfile.h,v 1.15 2010/08/04 05:42:47 djm Exp $ */
+/* $OpenBSD: authfile.h,v 1.16 2011/05/04 21:15:29 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -16,9 +16,11 @@
#define AUTHFILE_H
int key_save_private(Key *, const char *, const char *, const char *);
+int key_load_file(int, const char *, Buffer *);
Key *key_load_cert(const char *);
Key *key_load_public(const char *, char **);
Key *key_load_public_type(int, const char *, char **);
+Key *key_parse_private(Buffer *, const char *, const char *, char **);
Key *key_load_private(const char *, const char *, char **);
Key *key_load_private_cert(int, const char *, const char *, int *);
Key *key_load_private_type(int, const char *, const char *, char **, int *);