diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-12 08:22:52 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-12 08:26:06 -0500 |
commit | 0760974cd993b2cf926561b6dd93fe7935edbb2d (patch) | |
tree | 2358086759d5e2e4828cd8b215aee8634120d26e /tests | |
parent | 8f568e0b29e7f734b0e18fe136b6dcad4bf9dc83 (diff) | |
download | cryptography-0760974cd993b2cf926561b6dd93fe7935edbb2d.tar.gz cryptography-0760974cd993b2cf926561b6dd93fe7935edbb2d.tar.bz2 cryptography-0760974cd993b2cf926561b6dd93fe7935edbb2d.zip |
don't do value checks in the numbers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index cfb51b0b..8f10fb10 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1681,12 +1681,12 @@ class TestRSAEncryption(object): @pytest.mark.rsa class TestRSANumbers(object): def test_rsa_public_numbers(self): - public_numbers = rsa.RSAPublicNumbers(e=3, n=15) - assert public_numbers.e == 3 + public_numbers = rsa.RSAPublicNumbers(e=1, n=15) + assert public_numbers.e == 1 assert public_numbers.n == 15 def test_rsa_private_numbers(self): - public_numbers = rsa.RSAPublicNumbers(e=3, n=15) + public_numbers = rsa.RSAPublicNumbers(e=1, n=15) private_numbers = rsa.RSAPrivateNumbers( p=3, q=5, @@ -1713,7 +1713,7 @@ class TestRSANumbers(object): rsa.RSAPublicNumbers(e=1, n=None) def test_private_numbers_invalid_types(self): - public_numbers = rsa.RSAPublicNumbers(e=3, n=15) + public_numbers = rsa.RSAPublicNumbers(e=1, n=15) with pytest.raises(TypeError): rsa.RSAPrivateNumbers( |