summaryrefslogtreecommitdiff
path: root/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Crypto/SelfTest/Signature/test_pkcs1_15.py')
-rw-r--r--lib/Crypto/SelfTest/Signature/test_pkcs1_15.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py b/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py
index cc94262..c2d60f8 100644
--- a/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py
+++ b/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py
@@ -165,7 +165,7 @@ class PKCS1_15_Tests(unittest.TestCase):
# Data to sign can either be in hex form or not
try:
h.update(t2b(row[1]))
- except:
+ except ValueError:
h.update(b(row[1]))
# The real test
signer = PKCS.new(key)
@@ -186,7 +186,7 @@ class PKCS1_15_Tests(unittest.TestCase):
# Data to sign can either be in hex form or not
try:
h.update(t2b(row[1]))
- except:
+ except ValueError:
h.update(b(row[1]))
# The real test
verifier = PKCS.new(key)