Hi
 
I have created a CA certificate and Key as follows:
 
       ./bin/openssl req -new -x509 -keyout ./private/CAkey.pem \
      -out ./private/CAcert.pem  -config openssl.cnf
 
It prompted to enter password.
 
I have created a Certificate request as follows:
 
       ./bin/openssl req  -new -keyout ServerKey.pem -out ServerReq.pem  -days 360\
       -config openssl.cnf
 
Then I have signed it as follows:
 
       cat ServerReq.pem ServerKey.pem > CSR.pem

      ./bin/openssl ca  -policy policy_anything -out ServerCert.pem 
      -config openssl.cnf -infiles CSR.pem
 
This is also promted to enter password
 
When I uses the ServerCert.pem it prompts the password.
 
 
My questions are:
 
Can we avoid that password prompt when we use the certificates?
 
Are they above commands/procedures  are correct?
 
I am getting the SSL_ERROR_WANT_READ each time i uses those certificates.
 
 
Thanks
P
     


Do you Yahoo!?
Yahoo! Domains - Claim yours for only $14.70/year

Reply via email to