diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-05-14 18:16:22 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-05-14 18:16:22 +0000 |
commit | 1fd330c17b51f238b370cc946778efdc7e540c10 (patch) | |
tree | b5093ce890dde7f5f94048d1ba8f0e7519562a02 /usr.bin/ssh/key.h | |
parent | b7933e83cfa90e04f57d135bd8e47a6ad325977d (diff) |
add experimental support for verifying hos keys using DNS as described
in draft-ietf-secsh-dns-xx.txt. more information in README.dns.
ok markus@ and henning@
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 725c7a04a7b..a7b6afe86df 100644 --- a/usr.bin/ssh/key.h +++ b/usr.bin/ssh/key.h @@ -1,4 +1,4 @@ -/* $OpenBSD: key.h,v 1.20 2003/02/12 09:33:04 markus Exp $ */ +/* $OpenBSD: key.h,v 1.21 2003/05/14 18:16:20 jakob Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -61,6 +61,7 @@ void key_free(Key *); Key *key_demote(Key *); int key_equal(Key *, Key *); char *key_fingerprint(Key *, enum fp_type, enum fp_rep); +u_char *key_fingerprint_raw(Key *, enum fp_type, u_int *); char *key_type(Key *); int key_write(Key *, FILE *); int key_read(Key *, char **); |