diff options
author | Joern Heissler <joern@fishpond.co.nz> | 2016-01-13 22:51:37 +0100 |
---|---|---|
committer | Joern Heissler <joern@fishpond.co.nz> | 2016-01-13 22:51:37 +0100 |
commit | 1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5 (patch) | |
tree | 9af6b663011b1d0cee65d5581818b2f0961159a0 /docs/development | |
parent | 4b88c2d091f844c03f083ab2d6964f3980982419 (diff) | |
download | cryptography-1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5.tar.gz cryptography-1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5.tar.bz2 cryptography-1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5.zip |
Add verify method on CertificateSigningRequest
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/test-vectors.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index ad945f2f..4abf9f63 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -278,7 +278,7 @@ Custom X.509 Request Vectors request using RSA and SHA1 with a subject alternative name extension generated using OpenSSL. * ``two_basic_constraints.pem`` - A certificate signing request - for a RSA 2048 bit key containing two basic constraints extensions. + for an RSA 2048 bit key containing two basic constraints extensions. * ``unsupported_extension.pem`` - A certificate signing request for an RSA 2048 bit key containing containing an unsupported extension type. The OID was encoded as "1.2.3.4" with an @@ -287,9 +287,11 @@ Custom X.509 Request Vectors request for an RSA 2048 bit key containing containing an unsupported extension type marked critical. The OID was encoded as "1.2.3.4" with an ``extnValue`` of "value". -* ``basic_constraints.pem`` - A certificate signing request for a RSA +* ``basic_constraints.pem`` - A certificate signing request for an RSA 2048 bit key containing a basic constraints extension marked as critical. +* ``invalid_signature.pem`` - A certificate signing request for an RSA + 1024 bit key containing an invalid signature with correct padding. Custom X.509 Certificate Revocation List Vectors ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |