summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/key.c
diff options
context:
space:
mode:
authorjakob <jakob@openbsd.org>2003-05-14 18:16:20 +0000
committerjakob <jakob@openbsd.org>2003-05-14 18:16:20 +0000
commit1a2ea6a42b10623e03860e18cb01e6e73504491f (patch)
treea4eea44bb891acec06830d07f069c46046d54886 /usr.bin/ssh/key.c
parentDefault public key directory definition sanity. (diff)
downloadwireguard-openbsd-1a2ea6a42b10623e03860e18cb01e6e73504491f.tar.xz
wireguard-openbsd-1a2ea6a42b10623e03860e18cb01e6e73504491f.zip
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.c')
-rw-r--r--usr.bin/ssh/key.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c
index 060b63745a3..d918cfd0a3b 100644
--- a/usr.bin/ssh/key.c
+++ b/usr.bin/ssh/key.c
@@ -32,7 +32,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
-RCSID("$OpenBSD: key.c,v 1.51 2003/02/12 09:33:04 markus Exp $");
+RCSID("$OpenBSD: key.c,v 1.52 2003/05/14 18:16:20 jakob Exp $");
#include <openssl/evp.h>
@@ -169,7 +169,7 @@ key_equal(Key *a, Key *b)
return 0;
}
-static u_char *
+u_char*
key_fingerprint_raw(Key *k, enum fp_type dgst_type, u_int *dgst_raw_length)
{
const EVP_MD *md = NULL;