summaryrefslogtreecommitdiff
path: root/authfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/authfile.h b/authfile.h
index 9c8a95a01..1db067a81 100644
--- a/authfile.h
+++ b/authfile.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfile.h,v 1.23 2019/09/03 08:30:47 djm Exp $ */ 1/* $OpenBSD: authfile.h,v 1.25 2020/01/25 23:02:13 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved.
@@ -35,7 +35,6 @@ struct sshkey;
35 35
36int sshkey_save_private(struct sshkey *, const char *, 36int sshkey_save_private(struct sshkey *, const char *,
37 const char *, const char *, int, const char *, int); 37 const char *, const char *, int, const char *, int);
38int sshkey_load_file(int, struct sshbuf *);
39int sshkey_load_cert(const char *, struct sshkey **); 38int sshkey_load_cert(const char *, struct sshkey **);
40int sshkey_load_public(const char *, struct sshkey **, char **); 39int sshkey_load_public(const char *, struct sshkey **, char **);
41int sshkey_load_private(const char *, const char *, struct sshkey **, char **); 40int sshkey_load_private(const char *, const char *, struct sshkey **, char **);
@@ -49,5 +48,7 @@ int sshkey_perm_ok(int, const char *);
49int sshkey_in_file(struct sshkey *, const char *, int, int); 48int sshkey_in_file(struct sshkey *, const char *, int, int);
50int sshkey_check_revoked(struct sshkey *key, const char *revoked_keys_file); 49int sshkey_check_revoked(struct sshkey *key, const char *revoked_keys_file);
51int sshkey_advance_past_options(char **cpp); 50int sshkey_advance_past_options(char **cpp);
51int sshkey_save_public(const struct sshkey *key, const char *path,
52 const char *comment);
52 53
53#endif 54#endif