diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-15 14:02:41 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-15 14:02:41 -0400 |
commit | af075f0e1e80d5ceb55f20dc95a305a741678469 (patch) | |
tree | 908e336dcd1ef61c773e366f390c0dfb563580bf /docs/hazmat | |
parent | aabc5a1386a75239418981742e85cd235f7d4a53 (diff) | |
download | cryptography-af075f0e1e80d5ceb55f20dc95a305a741678469.tar.gz cryptography-af075f0e1e80d5ceb55f20dc95a305a741678469.tar.bz2 cryptography-af075f0e1e80d5ceb55f20dc95a305a741678469.zip |
Missing semicolon
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index 0f7e4093..234a5c66 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -86,8 +86,8 @@ RSA :param padding: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricPadding` provider. Valid values are - :class:~cryptography.hazmat.primitives.asymmetric.padding.PSS` and - :class:~cryptography.hazmat.primitives.asymmetric.padding.PKCS1v15` + :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS` and + :class:`~cryptography.hazmat.primitives.asymmetric.padding.PKCS1v15` (``PSS`` is recommended for all new applications). :param algorithm: An instance of a @@ -258,8 +258,8 @@ RSA :param padding: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricPadding` provider. Valid values are - :class:~cryptography.hazmat.primitives.asymmetric.padding.PSS` and - :class:~cryptography.hazmat.primitives.asymmetric.padding.PKCS1v15` + :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS` and + :class:`~cryptography.hazmat.primitives.asymmetric.padding.PKCS1v15` (``PSS`` is recommended for all new applications). :param algorithm: An instance of a |