aboutsummaryrefslogtreecommitdiffstats
path: root/docs/x509
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-12-04 07:33:52 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2015-12-04 07:33:52 -0500
commit69d3cadf8e8d6eb115cf0a1d85ccf686c0c2a833 (patch)
tree93ac4a10a8730cc8f16bf9da788837318bdf7051 /docs/x509
parent7b7f97a636d9b2081a33226380a9bad48a749fd4 (diff)
parentf389373faf59e4785c576c0de2aae759347804ab (diff)
downloadcryptography-69d3cadf8e8d6eb115cf0a1d85ccf686c0c2a833.tar.gz
cryptography-69d3cadf8e8d6eb115cf0a1d85ccf686c0c2a833.tar.bz2
cryptography-69d3cadf8e8d6eb115cf0a1d85ccf686c0c2a833.zip
Merge pull request #2507 from reaperhulk/tbs-csr-bytes
Support signature and tbs_certrequest_bytes on CertificateSigningRequest
Diffstat (limited to 'docs/x509')
-rw-r--r--docs/x509/reference.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst
index 35c00e61..0fea6167 100644
--- a/docs/x509/reference.rst
+++ b/docs/x509/reference.rst
@@ -734,6 +734,25 @@ X.509 CSR (Certificate Signing Request) Object
over the network to be signed by the certificate
authority.
+ .. attribute:: signature
+
+ .. versionadded:: 1.2
+
+ :type: bytes
+
+ The bytes of the certificate signing request's signature.
+
+ .. attribute:: tbs_certrequest_bytes
+
+ .. versionadded:: 1.2
+
+ :type: bytes
+
+ The DER encoded bytes payload (as defined by :rfc:`2986`) that is
+ hashed and then signed by the private key (corresponding to the public
+ key embedded in the CSR). This data may be used to validate the CSR
+ signature.
+
X.509 Revoked Certificate Object
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~