aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/interfaces.rst
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-05-23 21:31:51 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-05-23 21:31:51 +0100
commit33c9d838bcc9ed04d184bf86702499aed6faceab (patch)
tree89baef749841e38705ef63aa3c52ddde3c94ba9f /docs/hazmat/primitives/interfaces.rst
parenta264eccab51b57422b99bd12d58a3f2a3f15ac1c (diff)
downloadcryptography-33c9d838bcc9ed04d184bf86702499aed6faceab.tar.gz
cryptography-33c9d838bcc9ed04d184bf86702499aed6faceab.tar.bz2
cryptography-33c9d838bcc9ed04d184bf86702499aed6faceab.zip
Make EC key interfaces backend specific
Diffstat (limited to 'docs/hazmat/primitives/interfaces.rst')
-rw-r--r--docs/hazmat/primitives/interfaces.rst12
1 files changed, 2 insertions, 10 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst
index c5a430d2..c7b94ff2 100644
--- a/docs/hazmat/primitives/interfaces.rst
+++ b/docs/hazmat/primitives/interfaces.rst
@@ -503,7 +503,7 @@ Asymmetric interfaces
An elliptic curve private key for use with an algorithm such as `ECDSA`_ or
`EdDSA`_.
- .. classmethod:: signer(signature_algorithm, backend)
+ .. classmethod:: signer(signature_algorithm)
Sign data which can be verified later by others using the public key.
@@ -511,10 +511,6 @@ Asymmetric interfaces
:class:`~cryptography.hazmat.primitives.interfaces.EllipticCurveSignatureAlgorithm`
provider.
- :param backend: A
- :class:`~cryptography.hazmat.backends.interfaces.RSABackend`
- provider.
-
:returns:
:class:`~cryptography.hazmat.primitives.interfaces.AsymmetricSignatureContext`
@@ -537,7 +533,7 @@ Asymmetric interfaces
An elliptic curve public key.
- .. classmethod:: verifier(signer, signature_algorithm, backend)
+ .. classmethod:: verifier(signer, signature_algorithm)
Verify data was signed by the private key associated with this public
key.
@@ -548,10 +544,6 @@ Asymmetric interfaces
:class:`~cryptography.hazmat.primitives.interfaces.EllipticCurveSignatureAlgorithm`
provider.
- :param backend: A
- :class:`~cryptography.hazmat.backends.interfaces.RSABackend`
- provider.
-
:returns:
:class:`~cryptography.hazmat.primitives.interfaces.AsymmetricSignatureContext`