Re: [Ilugc] How to generate SSLv3 certificate using OpenSSL

2009-08-11 Thread Rosario Arun
thanks Kapil $openssl ca -policy policy_anything -config ./openssl.cnf -cert certs/ca.cer -in ./requests/certreq1.txt -keyfile ./keys/ca.key -days 360 -out ./certs/iis1.cer After creating the certificate, i found its not SSLv3. How do i force the above command to create a certificate SSLv3. ?

Re: [Ilugc] How to generate SSLv3 certificate using OpenSSL

2009-08-11 Thread Kapil Hari Paranjape
Hello, On Tue, 11 Aug 2009, Rosario Arun wrote: > $openssl ca -policy policy_anything -config ./openssl.cnf -cert > certs/ca.cer -in ./requests/certreq1.txt -keyfile ./keys/ca.key > -days 360 -out ./certs/iis1.cer > > After creating the certificate, i found its not SSLv3. How do i > force the abo

[Ilugc] How to generate SSLv3 certificate using OpenSSL

2009-08-11 Thread Rosario Arun
Hello friends, I wanted to create a self signed certificate using open ssl. Googling, and reading the documentations i managed to do that. The following is the command i used. I have skiped the steps that i used to create private key and CA. $openssl ca -policy policy_anything -config ./openss