Re: X.509 Extensions

2003-06-27 Thread Dr. Stephen Henson
On Fri, Jun 27, 2003, Jeremy Wiebe wrote: > Thanks for the rapid response! > > The doc/openssl.txt document was exactly what I was looking for. (Guess I > need to spiff up my research skills as that was right in the open there.) > > If I save the certificate to a file on my desktop as a .cer fi

Re: Propietary fiels in a Certificate.

2003-06-27 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Fri, 27 Jun 2003 18:03:48 -0300, Mateus <[EMAIL PROTECTED]> said: mateus> I'd like to know if there is any proprietary fiels in a X509 mateus> certificates and, if there is, what its name is. Nothing defined by the standard per se. However, it's always possibl

RE: Modifying Certificate Requests.

2003-06-27 Thread Fred Crable
Bah, doesn't sound like fun and you did say simple :).. Check out the i2d_X509_REQ and other der to internal functions. You can read in a request in der format & use it as a "base" to play around with. After that, you're on your own w/the request internals ;) > > Sorry Fred, but you did not

Re: make problem with OpenSSL

2003-06-27 Thread Krithiga Thangavelu
After you ran ./config, did you check the output of config to ensure everything is ok?. Problems during config, though specified in output are not easily noticeable. You can check that by rerunning ./config. -Krithiga james lankton wrote: But I suppose my problem still remains?James"Krithig

Re: Modifying Certificate Requests.

2003-06-27 Thread Mateus
Fred Crable wrote: You could script it as below:: #!/bin/bash openssl genrsa -out server.key 2048 HOST=`hostname` openssl req -new -key server.key -out server.crs << EORQ > /dev/null 2> /dev/null US Texas Richardson Voyence Product ${HOST} [EMAIL PROTECTED] EORQ cat server.key server.crs > new

RE: X.509 Extensions

2003-06-27 Thread Jeremy Wiebe
Thanks for the rapid response! The doc/openssl.txt document was exactly what I was looking for. (Guess I need to spiff up my research skills as that was right in the open there.) If I save the certificate to a file on my desktop as a .cer file and then double-click it, it opens up and on the ver

RE: Modifying Certificate Requests.

2003-06-27 Thread Fred Crable
You could script it as below:: #!/bin/bash openssl genrsa -out server.key 2048 HOST=`hostname` openssl req -new -key server.key -out server.crs << EORQ > /dev/null 2> /dev/null US Texas Richardson Voyence Product ${HOST} [EMAIL PROTECTED] EORQ cat server.key server.crs > newreq.pem CA.sh -sign

Propietary fiels in a Certificate.

2003-06-27 Thread Mateus
Hi, I'd like to know if there is any proprietary fiels in a X509 certificates and, if there is, what its name is. Thaks for your attention, Mateus. __ OpenSSL Project

Modifying Certificate Requests.

2003-06-27 Thread Mateus
Hi, I'd like to know if there is a simple way to insert data to a certificate request before it has been created. I'd like to create a default certificate request and then fill it with variable data and then sign it and make a expecific certificate out of it. Once this is done, I'd like to reus

Re: make problem with OpenSSL

2003-06-27 Thread james lankton
But I suppose my problem still remains? James "Krithiga Thangavelu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi DS, > > Thanks for your input. It helped me to solve the problem. I added the > path to libdl.so to -L option of cc. > > Krithiga > > David Schwartz wrote: > > >>H

Re: X.509 Extensions

2003-06-27 Thread Dr. Stephen Henson
On Fri, Jun 27, 2003, Jeremy Wiebe wrote: > Hello all, > > I've been digging around in the openssl-users mailing list looking for a > listing of available X.509 extensions that are valid. I googled a bit for > them and can't seem to find a definitive listing of extensions that OpenSSL > supports