diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-16 10:47:10 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-16 10:47:10 -0400 |
commit | 5f49a08b35268e53ea51973474034713b3b66fbd (patch) | |
tree | 7d9b12778a2b1f185dad540700b9853a5f06c693 /docs | |
parent | 706d2665449e08e59f8bdc600487fea09a9dfbf4 (diff) | |
parent | 2b54fb0c7a31ff780f3b53273db1158b98abe170 (diff) | |
download | cryptography-5f49a08b35268e53ea51973474034713b3b66fbd.tar.gz cryptography-5f49a08b35268e53ea51973474034713b3b66fbd.tar.bz2 cryptography-5f49a08b35268e53ea51973474034713b3b66fbd.zip |
Merge pull request #1962 from AndreLouisCaron/csr-test-vectors
Adds test vectors for X.509 CSR decoding.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/test-vectors.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index 6f61a7ee..9395202f 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -217,6 +217,16 @@ Custom X.509 Request Vectors * ``san_rsa_sha1.pem`` and ``san_rsa_sha1.der`` - Contain a certificate 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. +* ``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 + ``extnValue`` of "value". +* ``unsupported_extension_critical.pem`` - A certificate signing + 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". Hashes ~~~~~~ |