diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2015-03-04 18:04:51 +0000 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2015-03-04 18:04:51 +0000 |
commit | 0be6ddcadda45177dc082f1714f2edf7c0e30993 (patch) | |
tree | b362e26d97a00527b2fab7febc93aaecfcbb73ae /docs/development | |
parent | b0299eccd21859f8bcffef2da13e7a9d0875c5e4 (diff) | |
parent | 6d97742d8ae55b15b86b0a7ace0b7bc8e4591ef1 (diff) | |
download | cryptography-0be6ddcadda45177dc082f1714f2edf7c0e30993.tar.gz cryptography-0be6ddcadda45177dc082f1714f2edf7c0e30993.tar.bz2 cryptography-0be6ddcadda45177dc082f1714f2edf7c0e30993.zip |
Merge pull request #1714 from reaperhulk/asymmetric-public-vectors
add RSA/DSA PKCS1 public keys
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/test-vectors.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index 20f7ee1f..3d40a210 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -33,6 +33,9 @@ Asymmetric ciphers `unenc-rsa-pkcs8.pem`_, `pkcs12_s2k_pem.c`_. The contents of `enc2-rsa-pkcs8.pem`_ was re-encrypted using a stronger PKCS#8 cipher. * `Botan's ECC private keys`_. +* `asymmetric/public/PKCS1/dsa.pub.pem`_ is a PKCS1 DSA public key from the + Ruby test suite. + Custom Asymmetric Vectors ~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -71,7 +74,9 @@ Custom Asymmetric Vectors `OpenSSL example key`_ for RSA. * DER conversions of `enc-rsa-pkcs8.pem`_, `enc2-rsa-pkcs8.pem`_, and `unenc-rsa-pkcs8.pem`_. - +* ``asymmetric/public/PKCS1/rsa.pub.pem`` and + ``asymmetric/public/PKCS1/rsa.pub.der`` are PKCS1 conversions of the public + key from ``asymmetric/PKCS8/unenc-rsa-pkcs8.pem`` using PEM and DER encoding. X.509 ~~~~~ @@ -237,3 +242,4 @@ header format (substituting the correct information): .. _`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 +.. _`asymmetric/public/PKCS1/dsa.pub.pem`: https://github.com/ruby/ruby/blob/4ccb387f3bc436a08fc6d72c4931994f5de95110/test/openssl/test_pkey_dsa.rb#L53 |