summaryrefslogtreecommitdiff
path: root/authfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/authfile.h b/authfile.h
index 674fc939f..e66d1f573 100644
--- a/authfile.h
+++ b/authfile.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfile.h,v 1.14 2010/03/04 10:36:03 djm Exp $ */ 1/* $OpenBSD: authfile.h,v 1.15 2010/08/04 05:42:47 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -16,14 +16,16 @@
16#define AUTHFILE_H 16#define AUTHFILE_H
17 17
18int key_save_private(Key *, const char *, const char *, const char *); 18int key_save_private(Key *, const char *, const char *, const char *);
19Key *key_load_cert(const char *);
19Key *key_load_public(const char *, char **); 20Key *key_load_public(const char *, char **);
20Key *key_load_public_type(int, const char *, char **); 21Key *key_load_public_type(int, const char *, char **);
21Key *key_load_private(const char *, const char *, char **); 22Key *key_load_private(const char *, const char *, char **);
23Key *key_load_private_cert(int, const char *, const char *, int *);
22Key *key_load_private_type(int, const char *, const char *, char **, int *); 24Key *key_load_private_type(int, const char *, const char *, char **, int *);
23Key *key_load_private_pem(int, int, const char *, char **); 25Key *key_load_private_pem(int, int, const char *, char **);
24int key_perm_ok(int, const char *); 26int key_perm_ok(int, const char *);
25int key_in_file(Key *, const char *, int); 27int key_in_file(Key *, const char *, int);
26 28
27int blacklisted_key(const Key *key, char **fp); 29int blacklisted_key(Key *key, char **fp);
28 30
29#endif 31#endif