diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-04-26 20:56:31 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-04-26 20:56:31 +0000 |
commit | 37cb67acec9e6e06ee5741a04a6fc32a124506c7 (patch) | |
tree | dd607b413c9d9cf79da9058fe97f075d0cc7a20c /usr.bin/ssh/key.h | |
parent | 80bd16910dd37033c37a20a6606cac3416cb0795 (diff) |
add DSA pubkey auth and other SSH2 fixes. use ssh-keygen -[xX]
for trading keys with the real and the original SSH, directly from the
people who invented the SSH protocol.
Diffstat (limited to 'usr.bin/ssh/key.h')
-rw-r--r-- | usr.bin/ssh/key.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/key.h b/usr.bin/ssh/key.h index 70f0c518b8a..d1bcf3b1bed 100644 --- a/usr.bin/ssh/key.h +++ b/usr.bin/ssh/key.h @@ -18,6 +18,7 @@ void key_free(Key *k); int key_equal(Key *a, Key *b); char *key_fingerprint(Key *k); int key_write(Key *key, FILE *f); -int key_read(Key *key, unsigned int bits, char **cpp); +unsigned int +key_read(Key *key, char **cpp); #endif |