aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAndre Caron <andre.l.caron@gmail.com>2015-06-06 20:14:54 -0400
committerIan Cordasco <graffatcolmingov@gmail.com>2015-06-24 13:35:49 -0500
commit24f9bf4ba52c64f10ea6895a7e37dd0b4761b589 (patch)
treeddd6c47ff4746e85ed3fb4ade29988994768fa18 /docs
parent341ff85a7ceee3fb2e39e3ea11768b37e195445f (diff)
downloadcryptography-24f9bf4ba52c64f10ea6895a7e37dd0b4761b589.tar.gz
cryptography-24f9bf4ba52c64f10ea6895a7e37dd0b4761b589.tar.bz2
cryptography-24f9bf4ba52c64f10ea6895a7e37dd0b4761b589.zip
Lists support for DSA and EC in CSR builder.
Diffstat (limited to 'docs')
-rw-r--r--docs/x509.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/x509.rst b/docs/x509.rst
index 06a363fc..d7ab6478 100644
--- a/docs/x509.rst
+++ b/docs/x509.rst
@@ -527,7 +527,9 @@ X.509 CSR (Certificate Signing Request) Builder Object
interface.
:param private_key: The
- :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
+ :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
+ :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey` or
+ :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
that will be used to sign the request. When the request is
signed by a certificate authority, the private key's associated
public key will be stored in the resulting certificate.