Diffie Hellman exchange failures

2008-08-03 Thread Panthers Rock
Hello List, I am using the DH exchange to secure communication between two endpoints. My code looks something like below: DH * dh_keys = get_dh1024();// Returns a new DH structure containing the shared prime. //This function was generated

Re: OpenSSL For Windows CE

2008-08-03 Thread Panthers Rock
I have never compiled OpenSSL for Windows CE. However, it seems that you need to change compiler and linker options to say it is for an ARM processor. Look for CFLAGS and LFLAGS and make appropriate changes. On Mon, Jul 21, 2008 at 10:28 AM, Amir [EMAIL PROTECTED] wrote: Hi, I saw your

Re: Errors while building OpenSSL in Windows

2008-07-11 Thread Panthers Rock
. So it may be that things will get a little smoother at that point. [1] And when I say windows issues, I of course mean issues with OpenSSL compilation ... Vista is beyond anyone's handyman mojo ... grumble Cheers, Geoff On Thursday 10 July 2008 16:50:20 Panthers Rock wrote: I am trying

Errors while building OpenSSL in Windows

2008-07-10 Thread Panthers Rock
I am trying to do a default build of OpenSSL on Windows. The compiler does not like building with ASM files and complains the following: ml /Cp /coff /c /Cx /Focrypto\sha\asm\s1_win32.obj .\crypto\sha\asm\s1_win32.asm Assembling: .\crypto\sha\asm\s1_win32.asm Microsoft (R) Macro

RC4 and in-buffer encryption with EVP_Encrypt/DecryptUpdate

2008-07-01 Thread Panthers Rock
This question has been asked before and I could find no answers to it in the archives. Can one send the same buffer (for in and out parameters) to EVP_EncryptUpdate and EVP_DecryptUpdate functions when the encryption cipher is RC4? Regards, S M