diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-27 12:29:58 +0900 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-27 12:30:29 +0900 |
commit | e4150bcc07fb2c68e3c860c31766b4282bba8740 (patch) | |
tree | b688eae7a07be540e0cb2fd5ae44836afc8bf5d4 /tests/hazmat/primitives/test_asym_utils.py | |
parent | 3568563e0ecdec07606c8b5f3fed6eaea1fa95fd (diff) | |
download | cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.tar.gz cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.tar.bz2 cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.zip |
remove support for null points, improve docs
Diffstat (limited to 'tests/hazmat/primitives/test_asym_utils.py')
-rw-r--r-- | tests/hazmat/primitives/test_asym_utils.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_asym_utils.py b/tests/hazmat/primitives/test_asym_utils.py index c713e9c6..22551bc4 100644 --- a/tests/hazmat/primitives/test_asym_utils.py +++ b/tests/hazmat/primitives/test_asym_utils.py @@ -82,7 +82,8 @@ def test_decode_dss_invalid_asn1(): def test_encode_ec_point_none(): - assert encode_ec_point(ec.SECP384R1(), None, 100) == b"\x00" + with pytest.raises(ValueError): + encode_ec_point(ec.SECP384R1(), None, 100) def test_encode_wrong_curve_type(): @@ -106,7 +107,8 @@ def test_encode_ec_point(): def test_decode_ec_point_none(): - assert decode_ec_point(ec.SECP384R1(), b"\x00") == (None, None) + with pytest.raises(ValueError): + decode_ec_point(ec.SECP384R1(), b"\x00") def test_decode_ec_point(): |