Skip to content

Commit 31eecbd

Browse files
authored
Merge pull request #675 from NilashishC/kexalgo
Add support for specifying Kex Algos
2 parents 12b5ec7 + 8ce7c8a commit 31eecbd

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
The underlying ``SSH_OPTIONS_KEY_EXCHANGE`` option of ``libssh`` is
2+
now available as ``key_exchange_algorithms`` -- by :user:`NilashishC`.

src/pylibsshext/session.pyx

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ OPTS_MAP = {
3333
"timeout": libssh.SSH_OPTIONS_TIMEOUT,
3434
"knownhosts": libssh.SSH_OPTIONS_KNOWNHOSTS,
3535
"proxycommand": libssh.SSH_OPTIONS_PROXYCOMMAND,
36+
"key_exchange_algorithms": libssh.SSH_OPTIONS_KEY_EXCHANGE,
3637
"publickey_accepted_algorithms": libssh.SSH_OPTIONS_PUBLICKEY_ACCEPTED_TYPES,
3738
"hostkeys": libssh.SSH_OPTIONS_HOSTKEYS,
3839
"gssapi_server_identity": libssh.SSH_OPTIONS_GSSAPI_SERVER_IDENTITY,

0 commit comments

Comments
 (0)