summaryrefslogtreecommitdiff
path: root/tests/test_pkcs1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pkcs1.py')
-rw-r--r--tests/test_pkcs1.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_pkcs1.py b/tests/test_pkcs1.py
index a8b3cfd..1ce819f 100644
--- a/tests/test_pkcs1.py
+++ b/tests/test_pkcs1.py
@@ -101,7 +101,6 @@ class SignatureTest(unittest.TestCase):
signature = pkcs1.sign(message, self.priv, "SHA-256")
self.assertEqual("SHA-256", pkcs1.verify(message, signature, self.pub))
- @unittest.skipIf(sys.version_info < (3, 6), "SHA3 requires Python 3.6+")
def test_sign_verify_sha3(self):
"""Test happy flow of sign and verify with SHA3-256"""