summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2014-12-21 22:27:55 +0000
committerDamien Miller <djm@mindrot.org>2014-12-22 09:32:29 +1100
commit56d1c83cdd1ac76f1c6bd41e01e80dad834f3994 (patch)
tree700a872e702c686c1815bb1049eb93e88079b598 /servconf.h
parent058f839fe15c51be8b3a844a76ab9a8db550be4f (diff)
upstream commit
Add FingerprintHash option to control algorithm used for key fingerprints. Default changes from MD5 to SHA256 and format from hex to base64. Feedback and ok naddy@ markus@
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h
index 766db3a3d..49b228bdf 100644
--- a/servconf.h
+++ b/servconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: servconf.h,v 1.114 2014/07/15 15:54:14 millert Exp $ */ 1/* $OpenBSD: servconf.h,v 1.115 2014/12/21 22:27:56 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -185,6 +185,8 @@ typedef struct {
185 185
186 u_int num_auth_methods; 186 u_int num_auth_methods;
187 char *auth_methods[MAX_AUTH_METHODS]; 187 char *auth_methods[MAX_AUTH_METHODS];
188
189 int fingerprint_hash;
188} ServerOptions; 190} ServerOptions;
189 191
190/* Information about the incoming connection as used by Match */ 192/* Information about the incoming connection as used by Match */