Re: signing certificates in non-interactive mode

2006-01-06 Thread Sandhya
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

Re: signing certificates in non-interactive mode

2006-01-06 Thread Girish Venkatachalam
/* 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

RE: signing certificates in non-interactive mode

2006-01-06 Thread R, Rajesh (STSD)
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

signing certificates in non-interactive mode

2006-01-06 Thread Sandhya
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