summaryrefslogtreecommitdiff
path: root/authfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h21
1 files changed, 6 insertions, 15 deletions
diff --git a/authfile.h b/authfile.h
index 982645d50..c8b31fbe6 100644
--- a/authfile.h
+++ b/authfile.h
@@ -10,24 +10,15 @@
10 * called by a name other than "ssh" or "Secure Shell". 10 * called by a name other than "ssh" or "Secure Shell".
11 */ 11 */
12 12
13/* $OpenBSD: authfile.h,v 1.7 2001/06/26 06:32:48 itojun Exp $ */ 13/* $OpenBSD: authfile.h,v 1.8 2001/06/26 17:27:22 markus Exp $ */
14 14
15#ifndef AUTHFILE_H 15#ifndef AUTHFILE_H
16#define AUTHFILE_H 16#define AUTHFILE_H
17 17
18int 18int key_save_private(Key *, const char *, const char *, const char *);
19key_save_private(Key *, const char *, const char *, const char *); 19Key *key_load_public(const char *, char **);
20 20Key *key_load_public_type(int, const char *, char **);
21Key * 21Key *key_load_private(const char *, const char *, char **);
22key_load_public(const char *, char **); 22Key *key_load_private_type(int, const char *, const char *, char **);
23
24Key *
25key_load_public_type(int, const char *, char **);
26
27Key *
28key_load_private(const char *, const char *, char **);
29
30Key *
31key_load_private_type(int, const char *, const char *, char **);
32 23
33#endif 24#endif