aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-02-12 10:58:22 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-02-12 17:33:20 -0600
commit45efdbc2f775210af4bbc62e3e22ffb5915c796d (patch)
tree3147dc062745e3d3c4d82fa9ba3d8c1268ab9348 /docs/hazmat/backends
parenta9c131789609d0d4340624435ae6ca794f225203 (diff)
downloadcryptography-45efdbc2f775210af4bbc62e3e22ffb5915c796d.tar.gz
cryptography-45efdbc2f775210af4bbc62e3e22ffb5915c796d.tar.bz2
cryptography-45efdbc2f775210af4bbc62e3e22ffb5915c796d.zip
make our docs job nitpicky and fix every broken link
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r--docs/hazmat/backends/interfaces.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index e3dc96c0..b828fa73 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -334,7 +334,7 @@ A specific ``backend`` may provide one or more of these interfaces.
restricted to only the 1024-bit keys specified in FIPS 186-2.
:return: A new instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey`
+ :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`
provider.
:raises ValueError: This is raised if the key size is not supported
@@ -401,7 +401,7 @@ A specific ``backend`` may provide one or more of these interfaces.
.. method:: elliptic_curve_supported(curve)
:param curve: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurve`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`
provider.
:returns: True if the elliptic curve is supported by this backend.
@@ -409,11 +409,11 @@ A specific ``backend`` may provide one or more of these interfaces.
.. method:: elliptic_curve_signature_algorithm_supported(signature_algorithm, curve)
:param signature_algorithm: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurveSignatureAlgorithm`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurveSignatureAlgorithm`
provider.
:param curve: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurve`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`
provider.
:returns: True if the signature algorithm and curve are supported by this backend.
@@ -421,27 +421,27 @@ A specific ``backend`` may provide one or more of these interfaces.
.. method:: generate_elliptic_curve_private_key(curve)
:param curve: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurve`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`
provider.
.. method:: load_elliptic_curve_private_numbers(numbers)
:param numbers: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePrivateNumbers`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateNumbers`
provider.
:returns: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePrivateKey`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
provider.
.. method:: load_elliptic_curve_public_numbers(numbers)
:param numbers: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePublicNumbers`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicNumbers`
provider.
:returns: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePublicKey`
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`
provider.
.. class:: PEMSerializationBackend