diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-19 17:18:16 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-19 17:18:16 -0800 |
commit | 1b2a616174951d723df791695a461871a46042c4 (patch) | |
tree | a90d8da5c2e23103814aaf78a15e5de9c4e9a074 /docs/development | |
parent | fa35ef8ae841708e31e23a43167fff3fd88ae969 (diff) | |
parent | 1a7ba87dcc9c44178c9dae3351484707730d6a18 (diff) | |
download | cryptography-1b2a616174951d723df791695a461871a46042c4.tar.gz cryptography-1b2a616174951d723df791695a461871a46042c4.tar.bz2 cryptography-1b2a616174951d723df791695a461871a46042c4.zip |
Merge pull request #1651 from reaperhulk/x509-signature-algorithm
X509 certificate signature algorithm support
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/test-vectors.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index 4c048abf..2cd9faa6 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -80,6 +80,9 @@ X.509 * ``v1_cert.pem`` from the OpenSSL source tree (`testx509.pem`_). * ``ecdsa_root.pem`` - `DigiCert Global Root G3`_, a ``secp384r1`` ECDSA root certificate. +* ``verisign-md2-root.pem`` - A legacy Verisign public root signed using the + MD2 algorithm. This is a PEM conversion of the `root data`_ in the NSS source + tree. Custom X.509 Vectors ~~~~~~~~~~~~~~~~~~~~ @@ -219,3 +222,4 @@ header format (substituting the correct information): .. _`NIST PKI Testing`: http://csrc.nist.gov/groups/ST/crypto_apps_infra/pki/pkitesting.html .. _`testx509.pem`: https://github.com/openssl/openssl/blob/master/test/testx509.pem .. _`DigiCert Global Root G3`: http://cacerts.digicert.com/DigiCertGlobalRootG3.crt +.. _`root data`: https://hg.mozilla.org/projects/nss/file/25b2922cc564/security/nss/lib/ckfw/builtins/certdata.txt#l2053 |