From: Arnaud D. <arn...@fr...> - 2006-12-28 21:26:01
|
Hi, I wrote a second patch for pyOpenSSL 0.6 (to be applied just after my pkcs12 one). This allow generation of CRL like this : crl =3D crypto.CRL() crl.make_revoked("100928084218Z", "1") crl.make_revoked("100928084218Z", "2") print crypto.dump_crl(crl, cacert, capkey) Maybe I will do a separate sign(cacert, cakey) fonction instead of doing everything in dump_crl=E2=80=A6 This is mainly for web (not tested for others purposes) This patch is available here : http://arnaud.desmons.free.fr/pyOpenSSL-0.6-crl.patch Let me know what you guys think about it. Thanks. --=20 Arnaud |