diff options
author | djm@openbsd.org <djm@openbsd.org> | 2015-01-26 03:04:45 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-27 00:00:57 +1100 |
commit | 8d4f87258f31cb6def9b3b55b6a7321d84728ff2 (patch) | |
tree | c98e66c1c0824f0b0e312d7b44d8eeac46265362 /readconf.h | |
parent | 60b1825262b1f1e24fc72050b907189c92daf18e (diff) |
upstream commit
Host key rotation support.
Add a hostkeys@openssh.com protocol extension (global request) for
a server to inform a client of all its available host key after
authentication has completed. The client may record the keys in
known_hosts, allowing it to upgrade to better host key algorithms
and a server to gracefully rotate its keys.
The client side of this is controlled by a UpdateHostkeys config
option (default on).
ok markus@
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/readconf.h b/readconf.h index a23da1107..7a8ae17c0 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.h,v 1.106 2015/01/15 09:40:00 djm Exp $ */ | 1 | /* $OpenBSD: readconf.h,v 1.107 2015/01/26 03:04:45 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -146,7 +146,9 @@ typedef struct { | |||
146 | 146 | ||
147 | char *revoked_host_keys; | 147 | char *revoked_host_keys; |
148 | 148 | ||
149 | int fingerprint_hash; | 149 | int fingerprint_hash; |
150 | |||
151 | int update_hostkeys; | ||
150 | 152 | ||
151 | char *ignored_unknown; /* Pattern list of unknown tokens to ignore */ | 153 | char *ignored_unknown; /* Pattern list of unknown tokens to ignore */ |
152 | } Options; | 154 | } Options; |