summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_pkcs1.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_pkcs1.py b/tests/test_pkcs1.py
index bd1fd81..2116284 100644
--- a/tests/test_pkcs1.py
+++ b/tests/test_pkcs1.py
@@ -74,10 +74,7 @@ class SignatureTest(unittest.TestCase):
"""Test happy flow of sign and verify"""
message = b'je moeder'
- print("\tMessage: %r" % message)
-
signature = pkcs1.sign(message, self.priv, 'SHA-256')
- print("\tSignature: %r" % signature)
self.assertTrue(pkcs1.verify(message, signature, self.pub))