diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-18 10:23:13 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-18 10:23:13 -0700 |
commit | 9d64c02c142ed69750f8d04f3dd5849c593e8928 (patch) | |
tree | e0c2671f4af2d5acacb28c99506ae31d43d98078 /docs/development/test-vectors.rst | |
parent | 38c42635490d24d7ee88041b52002156c6f5a676 (diff) | |
parent | c5fffd3b33ace832697e2086411dc4e4f1ab03d0 (diff) | |
download | cryptography-9d64c02c142ed69750f8d04f3dd5849c593e8928.tar.gz cryptography-9d64c02c142ed69750f8d04f3dd5849c593e8928.tar.bz2 cryptography-9d64c02c142ed69750f8d04f3dd5849c593e8928.zip |
Merge pull request #827 from public/title-case
Standardise on sentence case for titles
Diffstat (limited to 'docs/development/test-vectors.rst')
-rw-r--r-- | docs/development/test-vectors.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index 1d768179..164d0abd 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -1,4 +1,4 @@ -Test Vectors +Test vectors ============ Testing the correctness of the primitives implemented in each ``cryptography`` @@ -10,7 +10,7 @@ vector file as input to verify consistency between implemented backends. Sources ------- -Asymmetric Ciphers +Asymmetric ciphers ~~~~~~~~~~~~~~~~~~ * RSA PKCS #1 from the RSA FTP site (ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/ @@ -43,7 +43,7 @@ HMAC * HMAC-RIPEMD160 from :rfc:`2286`. * HMAC-SHA2 (224, 256, 384, 512) from :rfc:`4231`. -Key Derivation Functions +Key derivation functions ~~~~~~~~~~~~~~~~~~~~~~~~ * HKDF (SHA1, SHA256) from :rfc:`5869`. @@ -55,7 +55,7 @@ Recipes * Fernet from its `specification repository`_. -Symmetric Ciphers +Symmetric ciphers ~~~~~~~~~~~~~~~~~ * AES (CBC, CFB, ECB, GCM, OFB) from `NIST CAVP`_. @@ -72,14 +72,14 @@ Symmetric Ciphers * IDEA (CBC, CFB, OFB) generated by this project. See: :doc:`/development/custom-vectors/idea` -Two Factor Authentication +Two factor authentication ~~~~~~~~~~~~~~~~~~~~~~~~~ * HOTP from :rfc:`4226` * TOTP from :rfc:`6238` (Note that an `errata`_ for the test vectors in RFC 6238 exists) -Creating Test Vectors +Creating test vectors --------------------- When official vectors are unavailable ``cryptography`` may choose to build |