Re: Create request without enter details

2003-07-09 Thread Thomas J. Hruska
At 04:29 PM 7/9/2003 +0200, gianni writeth: >Thomas J. Hruska wrote: >>You can also hack OpenSSL to accept input from stdin instead of whatever it >>defaults to on your platform...I did that a long time ago for Win32 and I >>remember it wasn't what I would call "fun", so I recommend avoiding that >

Re: Create request without enter details

2003-07-09 Thread Steve Waltner
As a general note for solving problems like this where you want to automate the process of driving a program that only accepts input from the keyboard, give Expect a try. Expect http://expect.nist.gov/ lets you script text programs that only accept input from the keyboard. A good example of thi

Re: Create request without enter details

2003-07-09 Thread Charles B Cranston
There are several people already doing this, including myself and the Papyrus people at Georgia Tech. What I do is just to supply the non-secret information in a configuration file, and add the secret information via Unix pipes. There is some variance depending on if you're using the "openssl ca"

Re: Create request without enter details

2003-07-09 Thread gianni
Thomas J. Hruska wrote: At 03:14 PM 7/9/2003 +0200, gianni writeth: [EMAIL PROTECTED] wrote: Hi, I want to create a request automatically with an webapplication. So the persons enter the details into a form an I write a temporary config-file to create request. Bu

Re: Create request without enter details

2003-07-09 Thread Thomas J. Hruska
At 03:14 PM 7/9/2003 +0200, gianni writeth: >[EMAIL PROTECTED] wrote: > >>Hi, >> >>I want to create a request automatically with an webapplication. So the >>persons enter the details into a form an I write a temporary config-file to >>create request. But how does the content of the config-file loo

Re: Create request without enter details

2003-07-09 Thread gianni
[EMAIL PROTECTED] wrote: Hi, I want to create a request automatically with an webapplication. So the persons enter the details into a form an I write a temporary config-file to create request. But how does the content of the config-file look, that it contains the details (cn, o, ou,...) and how

Create request without enter details

2003-07-09 Thread es-se
Hi, I want to create a request automatically with an webapplication. So the persons enter the details into a form an I write a temporary config-file to create request. But how does the content of the config-file look, that it contains the details (cn, o, ou,...) and how does the command look, wha