[openssl.org #1740] enhancement contribution to the req command

2008-09-08 Thread Arnaud Grandville via RT
Hi all, I've maid modifications to my apps/req.c file so that I can do batch certificate request without openssl config file. My new command line and the output stream look's like: C:\openssl req -subj /CN=test/streetAddress=rue st sebastien/L=LILLE/ST=FRANCE -newkey rsa:1024 -passin pass:test

[openssl.org #1725] OpenSSL-0.9.8h: Bug in Certificate Request generation

2008-09-08 Thread Steve Pincaud via RT
Hi, I have seen the issue will be fixed in the next releasehttp://www.mail-archive.com/openssl-dev@openssl.org/msg24330.html, do you have an ETA ? (0.9.8i or 0.9.9 ?) , I would then ask Apache team when such new OpenSSL milestone would be bundled in Apache2 HTTPd (2.3 ?!) Regards, Steve Hi,I

Hashing/MessageDigest in Engine

2008-09-08 Thread Nanavati, Sitanshu
Hi all, I am trying to understand how the hashing is supported via an engine. I had posted this question some time back though. And the answer I have is that the hashing normally is faster via soft lib than an engine/hardware. For knowledge sake, if one wishes to implement how open ssl

Re: [openssl.org #1725] OpenSSL-0.9.8h: Bug in Certificate Request generation

2008-09-08 Thread Rafael Jorge Csura Szendrodi via RT
Hi, On Mon,  8 Sep 2008 16:44:43 +0200 (CEST), Steve Pincaud via RT wrote Hi, I have seen the issue will be fixed in the next release, do you have an ETA ? (0.9.8i or 0.9.9 ?) , I would then ask Apache team when such new OpenSSL milestone would be bundled in Apache2 HTTPd (2.3 ?!)  

Re: [openssl.org #1725] OpenSSL-0.9.8h: Bug in Certificate Request generation

2008-09-08 Thread Kyle Hamilton
ETA is Estimated Time of Arrival. Basically, he's asking when OpenSSL 0.9.8i is going to be released. -Kyle H On Mon, Sep 8, 2008 at 1:39 PM, Rafael Jorge Csura Szendrodi via RT [EMAIL PROTECTED] wrote: Hi, On Mon, 8 Sep 2008 16:44:43 +0200 (CEST), Steve Pincaud via RT wrote Hi, I have

Re: [openssl.org #1725] OpenSSL-0.9.8h: Bug in Certificate Request generation

2008-09-08 Thread Kyle Hamilton
On Mon, Sep 8, 2008 at 1:39 PM, Rafael Jorge Csura Szendrodi via RT [EMAIL PROTECTED] wrote: Hi, On Mon, 8 Sep 2008 16:44:43 +0200 (CEST), Steve Pincaud via RT wrote Hi, I have seen the issue will be fixed in the next release, do you have an ETA ? (0.9.8i or 0.9.9 ?) , I would then ask

RE: Hashing/MessageDigest in Engine

2008-09-08 Thread Yair Elharrar
Sitanshu, To implement SHA1 in an ENGINE, create your own init/update/final functions and put them in an EVP_MD structure. write a function which returns the supported NIDs (e.g. NID_sha1), and then call ENGINE_set_digests() before ENGINE_add(). From: [EMAIL PROTECTED] [mailto:[EMAIL