aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-20 23:42:32 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-20 23:43:19 -0600
commit54a837d25df0ba2fa2a15238da9553e9a359bc14 (patch)
tree45d9003c882ebcdf43b0485ec3d72025777f673d /docs
parent394cca58a7dbd7e34d111f8c78a8f2dabda3a4b3 (diff)
downloadcryptography-54a837d25df0ba2fa2a15238da9553e9a359bc14.tar.gz
cryptography-54a837d25df0ba2fa2a15238da9553e9a359bc14.tar.bz2
cryptography-54a837d25df0ba2fa2a15238da9553e9a359bc14.zip
add a CRL public_bytes method
Diffstat (limited to 'docs')
-rw-r--r--docs/x509/reference.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst
index 91c53444..d0606330 100644
--- a/docs/x509/reference.rst
+++ b/docs/x509/reference.rst
@@ -523,6 +523,18 @@ X.509 CRL (Certificate Revocation List) Object
used to validate a signature, but use extreme caution as CRL validation
is a complex problem that involves much more than just signature checks.
+ .. method:: public_bytes(encoding)
+
+ .. versionadded:: 1.2
+
+ :param encoding: The
+ :class:`~cryptography.hazmat.primitives.serialization.Encoding`
+ that will be used to serialize the certificate revocation list.
+
+ :return bytes: The data that can be written to a file or sent
+ over the network and used as part of a certificate verification
+ process.
+
X.509 Certificate Builder
~~~~~~~~~~~~~~~~~~~~~~~~~