|
From: Arnaud D. <arn...@fr...> - 2006-11-29 22:08:05
|
Hi,
I wrote a patch for pyOpenSSL 0.6 to allow generation of PKCS12 files
like this :
p12 = crypto.PKCS12()
p12.set_privatekey(pkey)
p12.set_certificate(cert)
open("test.p12", "w").write(crypto.dump_pkcs12(p12, "my_passphrase"))
This patch is available here :
http://arnaud.desmons.free.fr/pyOpenSSL-0.6-pkcs12.patch
Let me know what you guys think about it.
Regards,
--
Arnaud
|