diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-23 11:31:03 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-23 11:31:03 -0700 |
commit | 385856db1bd2a2db7c5dd922a6e74d8e63082303 (patch) | |
tree | 278287470408c016b51ee21d9fcd50bc7569b6a0 /tests/test_kex.py | |
parent | b9ff5f3e4b11a7b8928e51629df0bfde4c6ebe53 (diff) |
Import cleanup, mostly focused on s/tests/./
Diffstat (limited to 'tests/test_kex.py')
-rw-r--r-- | tests/test_kex.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_kex.py b/tests/test_kex.py index b7f588f7..b5808e7e 100644 --- a/tests/test_kex.py +++ b/tests/test_kex.py @@ -24,14 +24,15 @@ from binascii import hexlify, unhexlify import os import unittest +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives.asymmetric import ec + import paramiko.util from paramiko.kex_group1 import KexGroup1 from paramiko.kex_gex import KexGex, KexGexSHA256 from paramiko import Message from paramiko.common import byte_chr from paramiko.kex_ecdh_nist import KexNistp256 -from cryptography.hazmat.backends import default_backend -from cryptography.hazmat.primitives.asymmetric import ec def dummy_urandom(n): |