diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-27 14:47:04 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-27 14:47:04 -0700 |
commit | 2fe48f621f0214361da5de498897846235957d32 (patch) | |
tree | faa53c9c6658fe554eabf661cc16998412df75a4 /docs/hazmat/backends/interfaces.rst | |
parent | a25445ffadd0cbb36382860866a90b8ccf5f3790 (diff) | |
parent | fecf6447ab12d963c1638e4588e27a80e85a686c (diff) | |
download | cryptography-2fe48f621f0214361da5de498897846235957d32.tar.gz cryptography-2fe48f621f0214361da5de498897846235957d32.tar.bz2 cryptography-2fe48f621f0214361da5de498897846235957d32.zip |
Merge pull request #1581 from alex/grammar
Fixed some grammar in the docs
Diffstat (limited to 'docs/hazmat/backends/interfaces.rst')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 8620d9a7..e9ee9467 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -271,8 +271,8 @@ A specific ``backend`` may provide one or more of these interfaces. ``private_exponent``, ``public_exponent``, or ``modulus`` do not match the bounds specified in :rfc:`3447`. - :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when - any backend specific criteria are not met. + :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised + when any backend specific criteria are not met. .. method:: load_rsa_public_numbers(numbers) @@ -286,8 +286,8 @@ A specific ``backend`` may provide one or more of these interfaces. ``public_exponent`` or ``modulus`` do not match the bounds specified in :rfc:`3447`. - :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when - any backend specific criteria are not met. + :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised + when any backend specific criteria are not met. .. class:: DSABackend @@ -368,8 +368,8 @@ A specific ``backend`` may provide one or more of these interfaces. :returns: A provider of :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters`. - :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when - any backend specific criteria are not met. + :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised + when any backend specific criteria are not met. .. method:: load_dsa_private_numbers(numbers) @@ -379,8 +379,8 @@ A specific ``backend`` may provide one or more of these interfaces. :returns: A provider of :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey`. - :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when - any backend specific criteria are not met. + :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised + when any backend specific criteria are not met. .. method:: load_dsa_public_numbers(numbers) @@ -390,8 +390,8 @@ A specific ``backend`` may provide one or more of these interfaces. :returns: A provider of :class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey`. - :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when - any backend specific criteria are not met. + :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised + when any backend specific criteria are not met. .. class:: EllipticCurveBackend |