Blob Blame History Raw
diff -up ecdsa-0.13.3/ecdsa/test_pyecdsa.py.noweak ecdsa-0.13.3/ecdsa/test_pyecdsa.py
--- ecdsa-0.13.3/ecdsa/test_pyecdsa.py.noweak	2019-10-07 07:51:57.000000000 -0600
+++ ecdsa-0.13.3/ecdsa/test_pyecdsa.py	2019-10-07 18:59:06.650945741 -0600
@@ -11,7 +11,7 @@ import subprocess
 from binascii import hexlify, unhexlify
 from hashlib import sha1, sha256, sha512
 
-from .six import b, print_, binary_type
+from six import b, print_, binary_type
 from .keys import SigningKey, VerifyingKey
 from .keys import BadSignatureError, MalformedPointError, BadDigestError
 from . import util
@@ -500,10 +500,6 @@ class OpenSSL(unittest.TestCase):
     # vk: 3:OpenSSL->python  4:python->OpenSSL
     # sig: 5:OpenSSL->python 6:python->OpenSSL
 
-    def test_from_openssl_nist192p(self):
-        return self.do_test_from_openssl(NIST192p)
-    def test_from_openssl_nist224p(self):
-        return self.do_test_from_openssl(NIST224p)
     def test_from_openssl_nist256p(self):
         return self.do_test_from_openssl(NIST256p)
     def test_from_openssl_nist384p(self):
@@ -539,10 +535,6 @@ class OpenSSL(unittest.TestCase):
         sig = sk.sign(data)
         self.assertTrue(vk.verify(sig, data))
 
-    def test_to_openssl_nist192p(self):
-        self.do_test_to_openssl(NIST192p)
-    def test_to_openssl_nist224p(self):
-        self.do_test_to_openssl(NIST224p)
     def test_to_openssl_nist256p(self):
         self.do_test_to_openssl(NIST256p)
     def test_to_openssl_nist384p(self):