diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-12-30 12:50:14 +0000 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2015-01-24 14:50:32 +0000 |
commit | f79c2313afdedae24b1b5b6d8fb8ff57f778a29b (patch) | |
tree | 0217de19e172701eef50dfef9dc43e2d7e22a3f4 /docs/hazmat/backends | |
parent | b9690abdb3b8afc0599a30deddd06a1681286d47 (diff) | |
download | cryptography-f79c2313afdedae24b1b5b6d8fb8ff57f778a29b.tar.gz cryptography-f79c2313afdedae24b1b5b6d8fb8ff57f778a29b.tar.bz2 cryptography-f79c2313afdedae24b1b5b6d8fb8ff57f778a29b.zip |
Move RSA*Key interfaces to cryptography.hazmat.primitives.asymmetric.rsa
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 9afbcb67..a2dd0c1c 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -234,7 +234,7 @@ A specific ``backend`` may provide one or more of these interfaces. at least 2048. :return: A new instance of a - :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` + :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey` provider. :raises ValueError: If the public_exponent is not valid. @@ -265,7 +265,7 @@ A specific ``backend`` may provide one or more of these interfaces. :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateNumbers`. :returns: A provider of - :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey`. + :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`. :raises ValueError: This is raised when the values of ``p``, ``q``, ``private_exponent``, ``public_exponent``, or ``modulus`` do not @@ -280,7 +280,7 @@ A specific ``backend`` may provide one or more of these interfaces. :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateNumbers`. :returns: A provider of - :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey`. + :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`. :raises ValueError: This is raised when the values of ``public_exponent`` or ``modulus`` do not match the bounds |