diff options
author | David Reid <dreid@dreid.org> | 2014-06-03 14:01:18 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-06-03 14:01:18 -0700 |
commit | da76ae019e98ef8580b9568bdd59fd27121ff432 (patch) | |
tree | 7480aa0c66c9773bb889a8bb42b53c3fc1edda43 /docs | |
parent | c57a3761004b364347c9c5d5ce9736b94f7af3d3 (diff) | |
download | cryptography-da76ae019e98ef8580b9568bdd59fd27121ff432.tar.gz cryptography-da76ae019e98ef8580b9568bdd59fd27121ff432.tar.bz2 cryptography-da76ae019e98ef8580b9568bdd59fd27121ff432.zip |
Document UnsupportedAlgorithm in a super vague way.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 6 |
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 |