Re: Netware CLIB libraries

2007-06-01 Thread Joe Flowers
Zack, I'm sorry I have an old mind and memory, but I actually do have a program that requires libeay32.lib and libssl32.lib to make a specific NLM. Unfortunately, I did not make them myself, but I do have an inside contact that I have queried on how to make these for Netware. It may just turn

Re: Netware CLIB libraries

2007-06-01 Thread Zack Payton
Joe, Thank you for the response. I guess I am looking to compile openssl into a static library that will work with older versions of netware. The netware readme file makes mention of this but documentation suggests that Code Warrior is a requirement (which I do not have). I will take a look at

Re: Netware CLIB libraries

2007-06-01 Thread Joe Flowers
Zack, I've done a lot of NetWare programming but have never heard of a "OpenSSL .lib for Novell Netware's CLIB library". I don't think such a beast exists. If you are looking to make .exe files then you can probably use the free Borland compiler (http://www.johnsmiley.com/cis18.notfree/smil

Netware CLIB libraries

2007-06-01 Thread Zack Payton
Hello all, I am looking for an OpenSSL .lib for Novell Netware's CLIB library. I'm looking at all the documentation and it appears this is only supported with Code Warrior which costs $. Does anybody know where I could find a precompiled lib, could anybody send me one, or give any advice for bui

RE: openssl clients for windows

2007-06-01 Thread gary clark
I found this in the Dependency walker FAQ: Some versions of SHLWAPI.DLL (like the one on Windows XP) have a delay-load dependency on the function WNetRestoreConnectionA in MPR.DLL. Missing delay-load functions are not a problem as long as the calling DLL is prepared to handle the situation. Depend

RE: openssl clients for windows

2007-06-01 Thread gary clark
Hey Amit, The msvcr80.dll is there already. Looking more closely at the libeay32.dll which it appears ssleay32.dll uses. I am seeing Warning: At least one module has an unresolved import due to a missing export function. MPR.dll used by both libraries looks to be at fault. Specifically WNetRestor

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
Try to drop in MSVCR80.dll in system32 --Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 4:13 PM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hey Amit, I built the visual studio pro

RE: openssl clients for windows

2007-06-01 Thread gary clark
Hey Amit, I built the visual studio project very similar except without the batchfile you created. I managed to successfully run the testclient on this machine. However I did build it with Visual Studio 2005. I'm not sure if this causes issues when trying to port to a machine without a previous

Re: SSL_accept gives error on 300+ simultaneous connection

2007-06-01 Thread Krishna M Singh
Thanks Marek for quick response that cleared all my doubts. On 6/1/07, Marek Marcola <[EMAIL PROTECTED]> wrote: Hello, > I have a SSL server that uses Openssl 9.7e. It works fine initially > but after a bit load (like 200+ connection), lots of SSL hanshake > failure occurs. The failure reason gi

Re: SSL_accept gives error on 300+ simultaneous connection

2007-06-01 Thread Marek Marcola
Hello, > I have a SSL server that uses Openssl 9.7e. It works fine initially > but after a bit load (like 200+ connection), lots of SSL hanshake > failure occurs. The failure reason given is SSL_ERROR_SSL and the > string received is > > error:140730FF:lib(20):func(115):reason(255):.\ssl\s23_srvr.

SSL_accept gives error on 300+ simultaneous connection

2007-06-01 Thread Krishna M Singh
Hi I have a SSL server that uses Openssl 9.7e. It works fine initially but after a bit load (like 200+ connection), lots of SSL hanshake failure occurs. The failure reason given is SSL_ERROR_SSL and the string received is error:140730FF:lib(20):func(115):reason(255):.\ssl\s23_srvr.c:227 On looki

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
What version of Visual Studio do you use? Lets see. First create a batch file (buildOpenSSL.bat) Add the following lines setlocal call "C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin\vcvars32.bat" > nul: set PATH=%PATH%; nmake -f ms\ntdll.mak nmake -f ms\ntdll.mak test nmake -f ms\

RE: flushing out data to write

2007-06-01 Thread David Schwartz
> I am trying to create a proxy that reads packets from one side and sends > them over an SSL connection to the other side. > However, I frequently notice that some SSL_write()'s present a > delay of 1sec > to send the data (I receive a packet at time 0sec > and it is sent at time 1sec). Can I flu

Re: Q's on making 0.9.8e with FIPS 1.1.1 andno-cipher/enable-cipher

2007-06-01 Thread Steve Marquess
Carlo Milono wrote: Thanks. I was using an older User Guide. The newest one does indeed state that the FIPS module is no longer a subset, but that validation was considered only on a completed distribution. Alas, now I have some real problems if I am limited to 0.9.7. If you can afford to w

RE: openssl clients for windows

2007-06-01 Thread gary clark
Thanks Amit. I have never built the openssl libraries in visual studio. I built it for windows machine but never use Visual Studio to build the libraries. Using openssl-0.9.8e. > cd /d C:\build\openssl-0.9.8e > perl Configure enable-camellia --openssldir=C:/www/openssl VC-WIN32 > nmake -f ms|ntd

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
Hi Gary, Did you build the openssl dlls yourself or you got them pre-built? I had exactly the same problem. I just built the openssl dlls using visualstudio 2003 and it all worked fine (my app was also built using VS2003). Please also send information about what dlls SSLEAY32.DLL depends on.

RE: openssl clients for windows

2007-06-01 Thread gary clark
Hello, I changed my codeGeneration for the console application to be /MT. It appears to be the only way I can at least run the application. I then profile the application using dependency walker. I see : Loaded "C:\windows\system32\SSLEAY32.DLL" at address 0x1000by thread 1. Successfully hoo

RE: Q's on making 0.9.8e with FIPS 1.1.1 andno-cipher/enable-cipher

2007-06-01 Thread Carlo Milono
Thanks. I was using an older User Guide. The newest one does indeed state that the FIPS module is no longer a subset, but that validation was considered only on a completed distribution. Alas, now I have some real problems if I am limited to 0.9.7. > -Original Message- > From: [EMAIL PR

RE: openssl clients for windows

2007-06-01 Thread gary clark
Hello, I ran the dependency walker and performed a profile. The see the error Message "Failure to starting the process. The application has failed to start because the application configuration is incorrect" Whats interesting I dont see the ssleay.dll or libeay32.dll? Am I suppose to? I wanted

RE: Q's on making 0.9.8e with FIPS 1.1.1 and no-cipher/enable-cipher

2007-06-01 Thread Bill Colvin
I think this is what you should be doing: 1) build openssl-fips-1.1.1 ./config fips make make install 2) build openssl-0.9.7m ./config fips --with-fipslibdir=/usr/local/ssl/lib \ --openssldir=/etc/ssl --prefix=/usr zlib-dynamic \ no-i

RE: openssl clients for windows

2007-06-01 Thread Simon Edwards
Hi Gary, Sorry the quick fix didn't work. Amit is right, you've a different dependency issue from the one that I found. So dependencywalker should throw it up. Regards, Simon Edwards Communications Software Development Micro Focus -Original Message- From: [EMAIL PROTECTED] [mailto:

RE: openssl clients for windows

2007-06-01 Thread gary clark
Thanks Amit. --- Amit Hakoo <[EMAIL PROTECTED]> wrote: > Hi Gary, > > Try using the dependency walker. It's a great tool. > > http://www.dependencywalker.com/ > > --Amit > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of gary clark > Sent: Frida

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
Hi Gary, Try using the dependency walker. It's a great tool. http://www.dependencywalker.com/ --Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 10:36 AM To: openssl-users@openssl.org Subject: RE: openssl clien

RE: openssl clients for windows

2007-06-01 Thread gary clark
Hey Simon, I pushed the MSVCR71.dll into windows system32 directory. I am building the application with code Generation /MD. I then ran the client application again. It then gave me the "failed to start the application configuration is incorrect. Reinstalling the application again may fix this pro

Re: Q's on making 0.9.8e with FIPS 1.1.1 and no-cipher/enable-cipher

2007-06-01 Thread Troy Monaghen
On Thu, 2007-05-31 at 22:09 -0700, Carlo Milono wrote: > On a Linux AS4 machine, I was able to successfully build both 0.9.8.e and > FIPS 1.1.1 and have both pass all tests :-) > > The VERSION in the FIPS Makefile is different than the version of the base > OpenSSL, and the only way to change t

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
Hi Gary, I had a similar problem not a long time ago. My application was built using Visual Studio 2003. I got the pre-built openssl dlls when I installed openssl for windows (got it from the recommended site posted on OpenSSL website). Running the application on some machines worked fine but on o

RE: openssl clients for windows

2007-06-01 Thread Simon Edwards
Hi Gary, I've seen this message when a dependent library is missing. Try using dumpbin or depends from the platform SDK on the affected system. Between them they should tell you which libraries are missing. Hmm, you don't say where you got the binaries from: If its from the current binary distri

Re: openssl clients for windows

2007-06-01 Thread gary clark
Hey Joe, Never heard of it before. Will give it a try. Much appreciated, Garyc --- Joe Flowers <[EMAIL PROTECTED]> wrote: > Gary, > > Have you tried running your application in a > Dependency Walker profile? > http://support.microsoft.com/kb/256872 > > Joe > > > gary clark wrote: > > Hey Vic

Re: openssl clients for windows

2007-06-01 Thread Joe Flowers
Gary, Have you tried running your application in a Dependency Walker profile? http://support.microsoft.com/kb/256872 Joe gary clark wrote: Hey Victor, Thanks for the response. I dont think its an attribute issue of dlls or files. I checked and they seem to be ok. Not read only. The two dlls

Re: openssl clients for windows

2007-06-01 Thread gary clark
Hey Victor, Thanks for the response. I dont think its an attribute issue of dlls or files. I checked and they seem to be ok. Not read only. The two dlls I'm using are ssleay32.dll and libeay32.dll and of type application extension. I want to load the libraries dynamically using "LoadLibrary(L"ssl

flushing out data to write

2007-06-01 Thread Spiros Antonatos
Hi all, I am trying to create a proxy that reads packets from one side and sends them over an SSL connection to the other side. However, I frequently notice that some SSL_write()'s present a delay of 1sec to send the data (I receive a packet at time 0sec and it is sent at time 1sec). Can I flush

Problem to create Signature file

2007-06-01 Thread Sachin Sisodia
Hi All, I am trying to create a Signature file through openssl as: smime -sign -in payload1.txt -signer RANG1-CC.pem -inform PEM -passin pass:abcd -inkey RANG1-CC-KEY.pem -out Signature_payload1.p7s -outform PEM -nocerts –binary But whenever, I am passing it to one of java service (

Finding problem with Signature

2007-06-01 Thread Sachin-Kumar Sisodia
Hi All, I am trying to create a Signature file through openssl as: smime -sign -in payload1.txt -signer RANG1-CC.pem -inform PEM -passin pass:abcd -inkey RANG1-CC-KEY.pem -out Signature_payload1.p7s -outform PEM -nocerts –binary But whenever, I am passing it to one of java service (ver