aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoern Heissler <joern@fishpond.co.nz>2016-01-13 22:51:37 +0100
committerJoern Heissler <joern@fishpond.co.nz>2016-01-13 22:51:37 +0100
commit1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5 (patch)
tree9af6b663011b1d0cee65d5581818b2f0961159a0 /tests
parent4b88c2d091f844c03f083ab2d6964f3980982419 (diff)
downloadcryptography-1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5.tar.gz
cryptography-1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5.tar.bz2
cryptography-1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5.zip
Add verify method on CertificateSigningRequest
Diffstat (limited to 'tests')
-rw-r--r--tests/test_x509.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 6145edb1..fde0755e 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -18,7 +18,7 @@ import pytest
import six
from cryptography import utils, x509
-from cryptography.exceptions import UnsupportedAlgorithm
+from cryptography.exceptions import UnsupportedAlgorithm, InvalidSignature
from cryptography.hazmat.backends.interfaces import (
DSABackend, EllipticCurveBackend, RSABackend, X509Backend
)
@@ -1241,6 +1241,24 @@ class TestRSACertificateRequest(object):
with pytest.raises(TypeError):
request.public_bytes('NotAnEncoding')
+ def test_verify_bad(self, backend):
+ request = _load_cert(
+ os.path.join("x509", "requests", "invalid_signature.pem"),
+ x509.load_pem_x509_csr,
+ backend
+ )
+
+ with pytest.raises(InvalidSignature):
+ request.verify()
+
+ def test_verify_good(self, backend):
+ request = _load_cert(
+ os.path.join("x509", "requests", "rsa_sha256.pem"),
+ x509.load_pem_x509_csr,
+ backend
+ )
+ request.verify()
+
@pytest.mark.parametrize(
("request_path", "loader_func", "encoding"),
[