diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-24 21:54:39 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-24 21:54:39 -0500 |
commit | 9f7ad198955c918c7e4d9a7160dc226779382ac7 (patch) | |
tree | 327813747bfc1db27988b0a3e94682d8f30c977c /docs/development | |
parent | cede72d984190fed405122836574a747c43ab7e2 (diff) | |
download | cryptography-9f7ad198955c918c7e4d9a7160dc226779382ac7.tar.gz cryptography-9f7ad198955c918c7e4d9a7160dc226779382ac7.tar.bz2 cryptography-9f7ad198955c918c7e4d9a7160dc226779382ac7.zip |
small cleanup to docs
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/test-vectors.rst | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index e9ab6123..32128681 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -99,29 +99,29 @@ Creating test vectors --------------------- When official vectors are unavailable ``cryptography`` may choose to build -its own using existing vectors as source material. +its own using existing vectors as source material. Current custom vectors ~~~~~~~~~~~~~~~~~~~~~~ -* ec_private_key.pem - Contains an Elliptic Curve key generated by OpenSSL - from the curve secp256r1. -* ec_private_key_encrypted.pem - Contains the same Elliptic Curve key as - ec_private_key.pem, except that it is encrypted with AES-256 with the +* ``ec_private_key.pem`` - Contains an Elliptic Curve key generated by OpenSSL + from the curve ``secp256r1``. +* ``ec_private_key_encrypted.pem`` - Contains the same Elliptic Curve key as + ``ec_private_key.pem``, except that it is encrypted with AES-256 with the password "123456". -* ec_public_key.pem - Contains the public key corresponding to - ec_private_key.pem, generated using OpenSSL. -* rsa_private_key.pem - Contains an RSA 2048 bit key generated using +* ``ec_public_key.pem`` - Contains the public key corresponding to + ``ec_private_key.pem``, generated using OpenSSL. +* ``rsa_private_key.pem`` - Contains an RSA 2048 bit key generated using OpenSSL, protected by the secret "123456" with DES3 encryption. -* rsa_public_key.pem - Contains an RSA 2048 bit public generated using - OpenSSL from rsa_private_key.pem. -* dsaparam.pem - Contains 2048-bit DSA parameters generated using OpenSSL; +* ``rsa_public_key.pem`` - Contains an RSA 2048 bit public generated using + OpenSSL from ``rsa_private_key.pem``. +* ``dsaparam.pem`` - Contains 2048-bit DSA parameters generated using OpenSSL; contains no keys. -* dsa_private_key.pem - Contains a DSA 2048 bit key generated using - OpenSSL from the parameters in dsaparam.pem, protected by the secret +* ``dsa_private_key.pem`` - Contains a DSA 2048 bit key generated using + OpenSSL from the parameters in ``dsaparam.pem``, protected by the secret "123456" with DES3 encryption. -* dsa_public_key.pem - Contains a DSA 2048 bit key generated using OpenSSL - from dsa_private_key.pem. +* ``dsa_public_key.pem`` - Contains a DSA 2048 bit key generated using OpenSSL + from ``dsa_private_key.pem``. .. toctree:: :maxdepth: 1 |