aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorErik Trauschke <erik.trauschke@gmail.com>2015-11-19 10:27:01 -0800
committerErik Trauschke <erik.trauschke@gmail.com>2015-11-19 10:27:01 -0800
commit6abe2bb4eefb224867683152bb204176b68399c9 (patch)
treed3a6306d27479ef3deaf1af9dbaec1cd68028134 /docs
parenta06e0cf66906a723682731af53e295179d5c9f4d (diff)
downloadcryptography-6abe2bb4eefb224867683152bb204176b68399c9.tar.gz
cryptography-6abe2bb4eefb224867683152bb204176b68399c9.tar.bz2
cryptography-6abe2bb4eefb224867683152bb204176b68399c9.zip
add tbsCertList and signature interfaces to CRLs
Diffstat (limited to 'docs')
-rw-r--r--docs/x509/reference.rst20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst
index 10ba9ec3..35c00e61 100644
--- a/docs/x509/reference.rst
+++ b/docs/x509/reference.rst
@@ -504,6 +504,26 @@ X.509 CRL (Certificate Revocation List) Object
The extensions encoded in the CRL.
+ .. attribute:: signature
+
+ .. versionadded:: 1.2
+
+ :type: bytes
+
+ The bytes of the CRL's signature.
+
+ .. attribute:: tbs_certlist_bytes
+
+ .. versionadded:: 1.2
+
+ :type: bytes
+
+ The DER encoded bytes payload (as defined by :rfc:`5280`) that is hashed
+ and then signed by the private key of the CRL's issuer. This data may be
+ used to validate a signature, but use extreme caution as CRL validation
+ is a complex problem that involves much more than just signature checks.
+
+
X.509 Certificate Builder
~~~~~~~~~~~~~~~~~~~~~~~~~