Skip to content

Instantly share code, notes, and snippets.

@ncoult
Created August 2, 2016 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncoult/4e33ad3b15580f791fdd75348b902134 to your computer and use it in GitHub Desktop.
Save ncoult/4e33ad3b15580f791fdd75348b902134 to your computer and use it in GitHub Desktop.
diff --git a/paramiko/transport.py b/paramiko/transport.py
index b52d315..00fbe9a 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -207,6 +207,8 @@ class Transport (threading.Thread, ClosingContextManager):
'ssh-rsa': RSAKey,
'ssh-dss': DSSKey,
'ecdsa-sha2-nistp256': ECDSAKey,
+ 'ecdsa-sha2-nistp384': ECDSAKey,
+ 'ecdsa-sha2-nistp521': ECDSAKey
}
_kex_info = {
@steb
Copy link

steb commented Sep 23, 2016

This resolves the issue I was hitting.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment