aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-06-03 14:01:18 -0700
committerDavid Reid <dreid@dreid.org>2014-06-03 14:01:18 -0700
commitda76ae019e98ef8580b9568bdd59fd27121ff432 (patch)
tree7480aa0c66c9773bb889a8bb42b53c3fc1edda43 /docs/hazmat/backends
parentc57a3761004b364347c9c5d5ce9736b94f7af3d3 (diff)
downloadcryptography-da76ae019e98ef8580b9568bdd59fd27121ff432.tar.gz
cryptography-da76ae019e98ef8580b9568bdd59fd27121ff432.tar.bz2
cryptography-da76ae019e98ef8580b9568bdd59fd27121ff432.zip
Document UnsupportedAlgorithm in a super vague way.
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r--docs/hazmat/backends/interfaces.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index 769ab989..1a2603bc 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -334,6 +334,9 @@ 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.
+
.. method:: load_rsa_public_numbers(numbers):
:param numbers: An instance of
@@ -346,6 +349,9 @@ 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.
+
.. class:: TraditionalOpenSSLSerializationBackend