Re: python openssl x509 CA

2008-10-31 Thread Michael Ströder
Paul Rubin wrote: > Marcin Jurczuk <[EMAIL PROTECTED]> writes: >> I want to create pure python implementation without use of openssl >> wrapped with python code. > > There was a CA written in Python quite a while back, http://pyca.de . That was the usual approach with invoking the openssl command

Re: python openssl x509 CA

2008-10-31 Thread Paul Rubin
Marcin Jurczuk <[EMAIL PROTECTED]> writes: > I want to create pure python implementation without use of openssl > wrapped with python code. There was a CA written in Python quite a while back, http://pyca.de . I don't know if it's maintained these days. -- http://mail.python.org/mailman/listinfo/p

Re: python openssl x509 CA

2008-10-31 Thread M.-A. Lemburg
On 2008-10-31 11:10, Marcin Jurczuk wrote: > Hello, > I'm fighting with Certificate Authority functionality with python > I stuck on following problem: How to sign CSR using CA key and write > resulted certificate. > > You can do it using following openssl cmd: > openssl ca -cert CA/cert.pem -keyf

python openssl x509 CA

2008-10-31 Thread Marcin Jurczuk
Hello, I'm fighting with Certificate Authority functionality with python I stuck on following problem: How to sign CSR using CA key and write resulted certificate. You can do it using following openssl cmd: openssl ca -cert CA/cert.pem -keyfile CA/private/cakey.pem -policy policy_anything -out us