aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-06-14 19:36:14 -0400
committerRob Austein <sra@hactrn.net>2016-06-14 19:36:14 -0400
commit070a8bae7310ac1bc3c94902e377bd685ff4b10a (patch)
tree21e1422ef5dfeb8f69b09f3a35c61787a24fbdc9
parent2a246c59d7e5efcc8e2612f4c5d045f3162172e0 (diff)
Clean up debugging output left in one of the unit tests.
-rw-r--r--unit_tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/unit_tests.py b/unit_tests.py
index 10b77ea..beb819b 100644
--- a/unit_tests.py
+++ b/unit_tests.py
@@ -498,7 +498,6 @@ class TestKeys(unittest.TestCase):
CKA_COEFFICIENT = inverse(k.q, k.p),
CKA_EXPONENT_1 = k.d % (k.p - 1),
CKA_EXPONENT_2 = k.d % (k.q - 1))
- print "Public key 0x{:x} private key 0x{:x}".format(public_key, private_key)
self.assertIsKeypair(public_key, private_key)
hamster = "Your mother was a hamster"
p11.C_SignInit(self.session, CKM_SHA512_RSA_PKCS, private_key)