RSAES-OAEP Support

2007-03-08 Thread Saurabh Arora
Hi does the current/nightly build of openssl support RSAES-OAEP key transport algorithm acc. to RFC 4055?? I see a file in openssl/crypto/rsa directory "rsa-oaep.c". but this algo is conformed to RFC 2437. or if sumone is working on the same, please can you give some pointers. thanks Saurabh

Can openssl-0.9.8e be compiled and used under microsoft windows?

2007-03-08 Thread 李平
Hi, I'm learning OpenSSL. Now, I have some questions about OpenSSL that is: 1. Can I compile openssl-0.9.8e directly under microsoft windows VC++ environment? How to do that? 2. Can I use openssl under microsoft windows mobile OS? Thank you very

Problems building openssl-0.9.8e on win32

2007-03-08 Thread Alex
Hi, Similar questions have been posted on the list before, but I was not able to find the answer. I am trying to compile version openssl-0.9.8e under windows using VS7 and running into trouble. The system reports that certain environment variables are not set. The first complaint is that %OSVERSI

Re: openserver /usr/lib/libssl.so.0.9.7 missing

2007-03-08 Thread Vincenzo Sciarra
Should be a dinamic linker error. Try ldconfig updating library linker. It's not a compiler error. For many details try gdb debugging. Greets, 2007/3/8, Dave Baddorf <[EMAIL PROTECTED]>: That worked for openssl-0.9.7m! Thanks Marek! Now, I'm getting: # curl dynamic linker: curl: re

RE: openserver /usr/lib/libssl.so.0.9.7 missing

2007-03-08 Thread Dave Baddorf
That worked for openssl-0.9.7m! Thanks Marek! Now, I'm getting: # curl dynamic linker: curl: relocation error: symbol not found: main; referenced from: /usr/lib/libssl.so.0.9.7 Is this a problem with the compilation of openssl? Can anyone give me a hand? Thanks!! Dave -Original M

Re: How to read a EC_KEY from a certificate

2007-03-08 Thread Jordi Jaen Pallares
Dear Viktor, thank you very much for the tip regarding the elliptic curve to use ! 2007/3/8, Victor Duchovni <[EMAIL PROTECTED]>: On Thu, Mar 08, 2007 at 02:41:46PM +0100, Jordi Jaen Pallares wrote: > # openssl ecparam -name sect233r1 -out sect233r1.pem You might do better with "prime256v1

connect starts failing when wired and wireless both active

2007-03-08 Thread Scott Walters
Hi, I've coded a Windows service that uses the openssl 0.9.8e libraries to poll a web site in loop. the libraries were compiled with debug info on Windows with Visual Studio 8, which is also the dev environment for the service code. At some point after 40 ro 50 iterations, the connect starts fa

Re: How to read a EC_KEY from a certificate

2007-03-08 Thread Victor Duchovni
On Thu, Mar 08, 2007 at 02:41:46PM +0100, Jordi Jaen Pallares wrote: > Dear list, > > I am writing an application that uses ECC and certificates. > > At initialization time, the idea is to generate both a self-signed root > certificate (as in the examples in the /demos examples) for the CA, > an

Re: Reading server name extension

2007-03-08 Thread Victor Duchovni
On Thu, Mar 08, 2007 at 09:15:00AM +0100, Jan F. Schnellbaecher wrote: > Victor Duchovni wrote: > > > > > Download a 0.9.9 dev snapshot and see the CHANGES file: > > > > > New functions (subject to change): > > > > SSL_get_servername() > > SSL_get_servername_type() > >

How to read a EC_KEY from a certificate

2007-03-08 Thread Jordi Jaen Pallares
Dear list, I am writing an application that uses ECC and certificates. At initialization time, the idea is to generate both a self-signed root certificate (as in the examples in the /demos examples) for the CA, and a set of long terms EC keys for each client. In the program I intend to use both

Re: Reading server name extension

2007-03-08 Thread Jan F. Schnellbaecher
Victor Duchovni wrote: > > Download a 0.9.9 dev snapshot and see the CHANGES file: > > New functions (subject to change): > > SSL_get_servername() > SSL_get_servername_type() > SSL_set_SSL_CTX() > Thanks Victor. This seem to be what I was looking for. Do you k