diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2013-12-06 13:34:55 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2013-12-06 13:34:55 +0000 |
commit | 4b5b44f5080b9b0bd2e297236bde454a7b1d32aa (patch) | |
tree | 8e9c7092e995869014cbc24e064734070c560ff3 /usr.bin/ssh/authfile.h | |
parent | a0a0b0e41189828b1c5f55581821bdde4cc693b1 (diff) |
new private key format, bcrypt as KDF by default; details in PROTOCOL.key;
feedback and lots help from djm; ok djm@
Diffstat (limited to 'usr.bin/ssh/authfile.h')
-rw-r--r-- | usr.bin/ssh/authfile.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfile.h b/usr.bin/ssh/authfile.h index 78349beb561..8ba1c2dbe5f 100644 --- a/usr.bin/ssh/authfile.h +++ b/usr.bin/ssh/authfile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.h,v 1.16 2011/05/04 21:15:29 djm Exp $ */ +/* $OpenBSD: authfile.h,v 1.17 2013/12/06 13:34:54 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -15,7 +15,8 @@ #ifndef AUTHFILE_H #define AUTHFILE_H -int key_save_private(Key *, const char *, const char *, const char *); +int key_save_private(Key *, const char *, const char *, const char *, + int, const char *, int); int key_load_file(int, const char *, Buffer *); Key *key_load_cert(const char *); Key *key_load_public(const char *, char **); |