[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 0/3] Add generic host key loading
[Thread Prev] | [Thread Next]
- Subject: [PATCH 0/3] Add generic host key loading
- From: Alan Dunn <amdunn@xxxxxxxxx>
- Reply-to: libssh@xxxxxxxxxx
- Date: Fri, 21 Mar 2014 21:28:38 -0500
- To: libssh@xxxxxxxxxx
- Cc: Alan Dunn <amdunn@xxxxxxxxx>
Hi folks, As discussed on the list, this patch set adds an option to load a host key of generic type. Right now, it repurposes SSH_BIND_OPTIONS_HOSTKEY, since it seemed like this is what we decided on, but I am happy to create another option instead since this could potentially break existing code. This patch set applies on top of my prior ECDSA host key patch set; the modifications to examples depend on changes there. Though it should probably come after Jon's addition of new ECDSA host key algorithms or else it is possible to set an ECDSA host key that the server won't be able to use until that patch is applied (though a check could be added for unusable ECDSA keys instead). Alan Dunn (3): options: Repurpose SSH_BIND_OPTIONS_HOSTKEY to load host keys doc: Document new meaning of SSH_BIND_OPTIONS_HOSTKEY examples: Update ssh_server_fork for new SSH_BIND_OPTIONS_HOSTKEY examples/ssh_server_fork.c | 10 +++--- src/options.c | 80 +++++++++++++++++++++++++++++++------------- 2 files changed, 63 insertions(+), 27 deletions(-) -- 1.7.9.5
[PATCH 1/3] options: Repurpose SSH_BIND_OPTIONS_HOSTKEY to load host keys | Alan Dunn <amdunn@xxxxxxxxx> |
[PATCH 2/3] doc: Document new meaning of SSH_BIND_OPTIONS_HOSTKEY | Alan Dunn <amdunn@xxxxxxxxx> |
[PATCH 3/3] examples: Update ssh_server_fork for new SSH_BIND_OPTIONS_HOSTKEY | Alan Dunn <amdunn@xxxxxxxxx> |