summaryrefslogtreecommitdiffhomepage
path: root/paramiko/transport.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/transport.py')
-rw-r--r--paramiko/transport.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index d97bee80..1a95f990 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -208,8 +208,11 @@ class Transport(threading.Thread, ClosingContextManager):
'ssh-dss': DSSKey,
'ssh-dss-cert-v01@openssh.com': DSSKey,
'ecdsa-sha2-nistp256': ECDSAKey,
+ 'ecdsa-sha2-nistp256-cert-v01@openssh.com': ECDSAKey,
'ecdsa-sha2-nistp384': ECDSAKey,
+ 'ecdsa-sha2-nistp384-cert-v01@openssh.com': ECDSAKey,
'ecdsa-sha2-nistp521': ECDSAKey,
+ 'ecdsa-sha2-nistp521-cert-v01@openssh.com': ECDSAKey,
'ssh-ed25519': Ed25519Key,
}