diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-07 11:44:04 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-07 11:44:04 -0600 |
commit | a43964a0e90d7788b81521c9e7b949cdc2b555a0 (patch) | |
tree | 137b67f9ca66d141e51060001a810f613a5e9331 /tests/hazmat/primitives | |
parent | ae6db32351447bf41b809ea4b18f17641724dac1 (diff) | |
download | cryptography-a43964a0e90d7788b81521c9e7b949cdc2b555a0.tar.gz cryptography-a43964a0e90d7788b81521c9e7b949cdc2b555a0.tar.bz2 cryptography-a43964a0e90d7788b81521c9e7b949cdc2b555a0.zip |
catch PyAsn1Error for encoding signature as well
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r-- | tests/hazmat/primitives/test_asym_utils.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_asym_utils.py b/tests/hazmat/primitives/test_asym_utils.py index 1a945f3a..3598f78a 100644 --- a/tests/hazmat/primitives/test_asym_utils.py +++ b/tests/hazmat/primitives/test_asym_utils.py @@ -36,6 +36,14 @@ def test_rfc6979_signature(): assert decode_rfc6979_signature(sig4) == (-1, 0) +def test_encode_rfc6979_non_integer(): + with pytest.raises(ValueError): + encode_rfc6979_signature("h", 3) + encode_rfc6979_signature(3, "h") + encode_rfc6979_signature(3.3, 1.2) + encode_rfc6979_signature("hello", "world") + + def test_decode_rfc6979_trailing_bytes(): with pytest.raises(ValueError): decode_rfc6979_signature(b"0\x06\x02\x01\x01\x02\x01\x01\x00\x00\x00") |