aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-01 14:50:31 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-03 22:17:21 -0600
commitab209394e8df273763132a44a5690b551493e94a (patch)
tree849c46872b65eef76dd68684439d36387c33dc49 /docs
parent7b7f97a636d9b2081a33226380a9bad48a749fd4 (diff)
downloadcryptography-ab209394e8df273763132a44a5690b551493e94a.tar.gz
cryptography-ab209394e8df273763132a44a5690b551493e94a.tar.bz2
cryptography-ab209394e8df273763132a44a5690b551493e94a.zip
expose tbs_certrequest_bytes and signature on CertificateSigningRequest
Diffstat (limited to 'docs')
-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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~