Re: CAPI Engine for Win CE

2011-01-06 Thread Pierre DELAAGE
...And call EXPLICITELY the W function, as my A function is NOT named exactly as expected, to avoid conflict with the A function provided in win32 5I can improve this later..). for your information, my A function embedded in openssl is called myA...eg "myCryptAcquireContextA". see engines/e_ca

Re: CAPI Engine for Win CE

2011-01-06 Thread Pierre DELAAGE
Harshvir, there is no problem for you to link BOTH with openssl AND wincrypt.lib ! particularly because openssl USES wincrypt.lib ! (I mean my patched openssl v100a). Linking with both libs should WORK. You have just to modify the makefile of your application. That way you will have access to

Re: CAPI Engine for Win CE

2011-01-06 Thread Harshvir Sidhu
Hi Pierre, No I will need OpenSSL, as i am using OpenSSL for doing all the work I need. OpenSSL code 1.0.0a is calling the functions with A, but as WinCE is UNICODE, so Wincrypt.lib is having W function functions and not A functions, and hence it was giving linking errors for OpenSSL libs for these

Re: CAPI Engine for Win CE

2011-01-06 Thread Pierre DELAAGE
Hi Harshvir, if you are using the UNICODE version of the three functions, then you DO NOT need the openssl implementation, BECAUSE the standard MS SDK already provides them (and does NOT provide ANSI implementations...!!! so I reimplemented them in e_capi.c). just use the function names endi

Re: OpenSSL 0.9.7

2011-01-06 Thread William A. Rowe Jr.
On 1/6/2011 12:23 PM, Garry S Ditzler wrote: > > Can you tell me if OpenSSL 0.9.7 is still supported? Yes, the answer is no, it is not. __ OpenSSL Project http://www.openssl.org User Support Mailin

OpenSSL 0.9.7

2011-01-06 Thread Garry S Ditzler
Can you tell me if OpenSSL 0.9.7 is still supported?

OpenSSL 0.9.7

2011-01-06 Thread Garry S Ditzler
Can you tell me if OpenSSL 0.9.7 is still supported?

CMS, decrypted content does not match the original

2011-01-06 Thread ammonite99
Hi all I am having problem with decrypting/encrypting a signed messages with openssl cms. I created firstly a signed message with openssl cms C:\usr\local\ssl\ca>openssl cms -sign -in data.txt -signer certs/local.cer -out 1.sign -outform DER -nodetach -inkey private/localkey.pem a signed message

ECC internals

2011-01-06 Thread Eugene N
Hello as i understand, ecc code came to openssl from sun microsystems. I would like to know, 1) what algorithms are used for reduction, inversion, multiplication in GF(2^m) and GF(p) 2) what coordinates are used in EC point operation 3) what algo is used for EC scalar multilication?

Re: CAPI Engine for Win CE

2011-01-06 Thread Harshvir Sidhu
Thanks, I was able to compile OpenSSL 1.0.0a for WinCE, but when i was trying to use it with Application, then it was giving error for function CryptSignHashA, and 2 more functions. OpenSSL is using ANSI version of functions, and my application was using Unicode libraries thats why there was a prob

RSA key exchange

2011-01-06 Thread Dirk Menstermann
Hello list, I've questions about how (temporary) RSA keys will be used in a SSL/TLS handshake. I understand that DH key exchange is the preferred and standard way to exchange the shared secret. Nevertheless 1) When will RSA key exchange be used? Is this a configuration of the server? 2) Are the

Re: sample client-server code withh ssl

2011-01-06 Thread michel
the source code available here was also usefull for me : http://www.opensslbook.com/ excerpt from the book can be found online with google preview Le 06/01/2011 00:00, Bhola Ray a écrit : Hello, Can anyone provide me with a working client-server code with SSL. If there is a pointer to a s