diff options
-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 |