summaryrefslogtreecommitdiff
path: root/authfile.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:02:36 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:02:36 +0000
commit16ae3d0dba5f81e5602798b915105284033dea75 (patch)
treece0c2bf0d7e961b1015d43d1a07269d81e7a9ce9 /authfile.h
parent90279d80f57c79ac6566051172a94a2cca9674b1 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:32:58
[atomicio.h authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h canohost.h channels.h cipher.h clientloop.h compat.h compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.h hostfile.h kex.h key.h log.h mac.h match.h misc.h mpaux.h packet.h radix.h readconf.h readpass.h rsa.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/authfile.h b/authfile.h
index da90cd913..982645d50 100644
--- a/authfile.h
+++ b/authfile.h
@@ -10,27 +10,24 @@
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.6 2001/03/26 08:07:08 markus Exp $ */ 13/* $OpenBSD: authfile.h,v 1.7 2001/06/26 06:32:48 itojun Exp $ */
14 14
15#ifndef AUTHFILE_H 15#ifndef AUTHFILE_H
16#define AUTHFILE_H 16#define AUTHFILE_H
17 17
18int 18int
19key_save_private(Key *key, const char *filename, const char *passphrase, 19key_save_private(Key *, const char *, const char *, const char *);
20 const char *comment);
21 20
22Key * 21Key *
23key_load_public(const char *filename, char **commentp); 22key_load_public(const char *, char **);
24 23
25Key * 24Key *
26key_load_public_type(int type, const char *filename, char **commentp); 25key_load_public_type(int, const char *, char **);
27 26
28Key * 27Key *
29key_load_private(const char *filename, const char *passphrase, 28key_load_private(const char *, const char *, char **);
30 char **commentp);
31 29
32Key * 30Key *
33key_load_private_type(int type, const char *filename, const char *passphrase, 31key_load_private_type(int, const char *, const char *, char **);
34 char **commentp);
35 32
36#endif 33#endif