Re: Automated certificate creation

2007-08-09 Thread Urjit Gokhale
Thank you everyone for your replies. I will try them out and will get back to you again in case I have any more questions. Thanks a lot. ~ Urjit - Original Message - From: "Smith, Ryan-P56787" <[EMAIL PROTECTED]> To: Sent: Wednesday, August 08, 2007 11:37 PM Subjec

RE: Automated certificate creation

2007-08-08 Thread Smith, Ryan-P56787
Here is an OpenSSL command that I have had success with this in the past. openssl req -new -out certreq.pem -subj '/C=US/ST=Arizona/L=City/O=Organization/CN=My Common Name' -passout pass:password Of course this certificate request needs to be signed by the CA to become a valid certificate ope

RE: Automated certificate creation

2007-08-08 Thread Smith, Ryan-P56787
Here is an OpenSSL command that I have had success with this in the past. openssl req -new -out certreq.pem -subj '/C=US/ST=Arizona/L=City/O=Organization/CN=My Common Name' -passout pass:password Of course this certificate request needs to be signed by the CA to become a valid certificate ope

RE: Automated certificate creation

2007-08-08 Thread Carlo Milono
I made a "self-serve" model with a simple form POST and a script - I received four input parameters and assembled a text file and passed the parameters to the script: REM set the basic configuration parameters set OPENSSL_CONF=C:\OpenSSL\bin\OpenSSL.cnf REM %1 is emailAddress, %2 is password,

Re: Automated certificate creation

2007-08-08 Thread bgiles
> Hi, > > while creating certificate requests using openssl, one is prompted for > some information like Country name, Sate, Locality name etc. > Though these parameters have defaults set, one has to hit return to move > ahead. > > Is there a way to achieve this without being prompted for any infor

Re: Automated certificate creation

2007-08-08 Thread Marek Marcola
Hello, > > while creating certificate requests using openssl, one is prompted for > some information like Country name, Sate, Locality name etc. > Though these parameters have defaults set, one has to hit return to > move ahead. > > Is there a way to achieve this without being prompted for any >