diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-14 09:49:20 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-16 17:03:40 -0400 |
commit | 763c621de1cb576dd4f9ec02fab73df30f71c1d8 (patch) | |
tree | 3e3123ac6557c0ad85fe2897cb01e156e2014d1f | |
parent | b5936a7817b535422574a3627473b13a5f21e5d8 (diff) | |
download | cryptography-763c621de1cb576dd4f9ec02fab73df30f71c1d8.tar.gz cryptography-763c621de1cb576dd4f9ec02fab73df30f71c1d8.tar.bz2 cryptography-763c621de1cb576dd4f9ec02fab73df30f71c1d8.zip |
move PSS to top of docs
-rw-r--r-- | docs/hazmat/primitives/asymmetric/padding.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/hazmat/primitives/asymmetric/padding.rst b/docs/hazmat/primitives/asymmetric/padding.rst index aa48b313..cbfd2920 100644 --- a/docs/hazmat/primitives/asymmetric/padding.rst +++ b/docs/hazmat/primitives/asymmetric/padding.rst @@ -10,13 +10,6 @@ Padding correct padding signatures can be forged, messages decrypted, and private keys compromised. -.. class:: PKCS1v15() - - .. versionadded:: 0.3 - - PKCS1 v1.5 (also known as simply PKCS1) is a simple padding scheme - developed for use with RSA keys. It is defined in :rfc:`3447`. - .. class:: PSS(mgf) .. versionadded:: 0.3 @@ -28,6 +21,13 @@ Padding :param mgf: A mask generation function object. At this time the only supported MGF is :class:`MGF1`. +.. class:: PKCS1v15() + + .. versionadded:: 0.3 + + PKCS1 v1.5 (also known as simply PKCS1) is a simple padding scheme + developed for use with RSA keys. It is defined in :rfc:`3447`. + Mask Generation Functions ~~~~~~~~~~~~~~~~~~~~~~~~~ |