RE: how to generate a DSA certificate?

2002-09-22 Thread Jose Correia (J)
Hi Touria Take a look at: http://resin.csoft.net/~resin/cgi-bin/man.cgi?section=8&topic=ssl where it says: GENERATING DSA SERVER CERTIFICATES Alternatively if you do a search using google or some other search engine using keywords like: "generating DSA certificates with openssl" you would fin

Problem with Apache and server key passphrase after upgrade

2002-09-22 Thread Nate Richmond
Hi, all. Hopefully this is the appropriate list for my question, though it's certainly possible that it could be a mod_ssl problem. I'm running Apache 1.3.26, OpenSSL 0.9.6e, and mod_ssl 2.8.10-1.3.26. I believe I was previously using OpenSSL 0.9.6c though it could have been d. All of them wer

Re: BIO_printf() and ERR_print_errors() do not allocate memory

2002-09-22 Thread mlcarey59
I got it to work by selecting Project : Settings from the menu to access the Project Settings dialog and under C/C++ and selecting Code Generation from the Category drop down box. Setting the runtime library to Multithreaded DLL, which is the library that OpenSSL uses, works. I should have taken

x509 man

2002-09-22 Thread Alexey
I need openssl x509 & x509v3 functions manual. please help me. where I can find subject ? thank u __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROT

Re: problem in signing documents

2002-09-22 Thread Nils Larsch
On Samstag, 21. September 2002 14:13, Touria Zaddaoui wrote: > dear all, > can anybody help me with this problem? > when i sign document with a signing algorithm different than md5 like md2 > for example, i get an error in the verification, i use the following > commands: > 1- to sign: > openssl d

Re: BIO_printf() and ERR_print_errors() do not allocate memory

2002-09-22 Thread Dr. Stephen Henson
On Sun, Sep 22, 2002, Stephan Schulze wrote: > I also found errors using PEM_read_ RSAPrivateKey(FILE *fp,...) OR >PEM_read_bio_RSAPrivateKey(BIO *bio,...) when the bio points to a file. > > My solution was to read the private-key file into a memory buffer with fread(). > (This means that the

Re: how to generate a DSA certificate?

2002-09-22 Thread Nils Larsch
On Samstag, 21. September 2002 13:35, Touria Zaddaoui wrote: > hello everybody, hi, > this is the problem i have with generating a dsa certificate: > after generating a CA private keys & certificate, i do the following > command to generate a DSA certificate signed by the already generated CA >

Re: BIO_printf() and ERR_print_errors() do not allocate memory

2002-09-22 Thread Stephan Schulze
I also found errors using PEM_read_ RSAPrivateKey(FILE *fp,...) OR PEM_read_bio_RSAPrivateKey(BIO *bio,...) when the bio points to a file.   My solution was to read the private-key file into a memory buffer with fread(). (This means that the file is not protected with a password)   Associat