From 01192d3ceea51e993417b5feafcf49272c51d015 Mon Sep 17 00:00:00 2001 From: Dominic Chen Date: Wed, 14 Oct 2015 00:33:53 +0000 Subject: [PATCH] add changelog and documentation --- ChangeLog | 5 +++++ doc/api/crypto.rst | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index e872eca4a..674e2f531 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-10-13 Dominic Chen + + * OpenSSL/crypto.py: Implement the ``dump_crl()`` function to dump a + certificate revocation list out to a string buffer. + 2015-09-07 Sam Lee * OpenSSL/SSL.py, OpenSSL/test/test_ssl.py: Implemented diff --git a/doc/api/crypto.rst b/doc/api/crypto.rst index e2f2bcadc..52da74228 100644 --- a/doc/api/crypto.rst +++ b/doc/api/crypto.rst @@ -90,6 +90,11 @@ Private keys Certificate revocation lists ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.. py:function:: dump_crl(type, crl) + + Dump the Certificate Revocation List (CRL) *crl* into a buffer string + encoded with the type *type*. + .. py:function:: load_crl(type, buffer) Load Certificate Revocation List (CRL) data from a string *buffer*.