Thanks Girish... that worked!!!
On Fri, 2006-01-06 at 17:18, Girish Venkatachalam wrote:
>
> /* now sign the request generated */
> sprintf(cmd,"openssl ca -batch -config %s -in %s -days
> %d -out %s -passin
> pass:%s",ROOTCA_CONFIG_FILE,temp_cert_req,CA_SERVER_VALID_DAYS,tmpcert,ROOTCA_PKEY_PHR
/* now sign the request generated */
sprintf(cmd,"openssl ca -batch -config %s -in %s -days
%d -out %s -passin
pass:%s",ROOTCA_CONFIG_FILE,temp_cert_req,CA_SERVER_VALID_DAYS,tmpcert,ROOTCA_PKEY_PHRASE);
ret = system(cmd);
This is what I have in my program and it works non
interac
PM
To: openssl-users@openssl.org
Subject: signing certificates in non-interactive mode
Hi all,
I need to sign the certificates in non-interactive mode I'm
executing the following command,
openssl ca -out /usr/local/ca/newcerts/signed.pem -infiles
./usercert_request.pem
This command prompts t
Hi all,
I need to sign the certificates in non-interactive mode I'm
executing the following command,
openssl ca -out /usr/local/ca/newcerts/signed.pem -infiles
./usercert_request.pem
This command prompts the user 3 times. Is there any way that I can run
this command non-interactively by pass