0.9.8e OpenSSL SSL_write memory leak?

2008-09-12 Thread gary clark
Hello, Using windows XP. I'm trying to confirm why when sending data using SSL_write intermittently I get a 4K jump in memory. It does not happen on every SSL_write which is driving me crazy. Could somebody please tell me if they have seen something similar and if so what was the solution?

[no subject]

2008-12-12 Thread gary clark
__ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager majord...@openssl.org

error:0200274D:system library:connect:reason(1869)?

2009-09-23 Thread gary clark
Hello, I am receiving a 0200274D error when attempting to connect to a linux server. 274D=10061 ECONNREFUSED. Not sure what the reason is 1869? could somebody please tell me. Much appreciated in adavance. Thanks, Garyc __

OpenSSL and Python

2010-04-21 Thread gary clark
Hello, I am porting my code to a new server. I have installed Python 2.5.2 working on a linux box. The problem is I need to know what version of pyOpenSSL and OpenSSL libs are compatible with this version of linux. I'm seeing the below: python Python 2.5.2 (r252:60911, Sep 30 2008, 15:41:38)

Re: OpenSSL and Python

2010-04-21 Thread gary clark
Appreciated. Garyc --- On Wed, 4/21/10, Antoine Pitrou solip...@pitrou.net wrote: From: Antoine Pitrou solip...@pitrou.net Subject: Re: OpenSSL and Python To: openssl-users@openssl.org Date: Wednesday, April 21, 2010, 6:39 PM Le mercredi 21 avril 2010 à 16:06 -0700, gary clark a écrit

OpenSSL and Visual C++

2007-04-05 Thread gary clark
Hiya, I want to build a simple server and client model using open ssl and Visual C++. Any chance somebody can point me in the right direction. I attempted to build the openssl s_server as a console application and hit some undefines when linking? Any help would be much appreciated, Thanks,

OpenSSL and Visual C++

2007-04-05 Thread gary clark
Hiya, I want to build a simple server and client model using open ssl and Visual C++. Any chance somebody can point me in the right direction. I attempted to build the openssl s_server as a console application and hit some undefines when linking? Any help would be much appreciated. Thanks,

Visual C++ and openssl

2007-04-06 Thread gary clark
Hiya, I am trying to build a simple client and server which is proving not to be so simple in visual c++. I am using the s_server.c file in openssl/apps and have pulled in the following libs. wsock32.lib advapi32.lib gdi32.lib user32.lib what other libs and possibly .dll do I need in order to

Re: Visual C++ and openssl

2007-04-06 Thread gary clark
Hi Thomas, Much appreciated the response. Yep I was building it wrong...but of course. Oh well. Thanks, Garyc --- Thomas J. Hruska [EMAIL PROTECTED] wrote: gary clark wrote: Hiya, I am trying to build a simple client and server which is proving not to be so simple in visual c

Re: Visual C++ and openss

2007-04-06 Thread gary clark
Hiya, I appear to be missing SHUTDOWN api when attempted to build the s_server? I'm using version 0.9.8e. Any ideas where this is? Thanks, Garyc --- gary clark [EMAIL PROTECTED] wrote: Hi Thomas, Much appreciated the response. Yep I was building it wrong...but of course. Oh well

Re: Visual C++ and openss

2007-04-06 Thread gary clark
I needed to define USE_SOCKETS to include the SHUTDOWN macro stored in e_os.h. Thanks, Garyc --- gary clark [EMAIL PROTECTED] wrote: Hiya, I appear to be missing SHUTDOWN api when attempted to build the s_server? I'm using version 0.9.8e. Any ideas where this is? Thanks, Garyc

Newbie questions

2007-05-22 Thread gary clark
Hello, I downloaded and installed open-ssl on a windows environment. I then used the openssl application to start the s_client and s_server. I ran the client and server with the following commands. I then attempted to connect my client to the s_server. I managed to connect to the server but

Sending data to s_server?

2007-05-22 Thread gary clark
Hello, I want to see a message from my test client to the openssl s_server. I connect fine. However when I send a message to the server I see from the following: C:\www\opensssl\bin\openssl.exe s_server -accept 2000 -debug -nocert Loading 'screen' into random state - done Using default temp

Sending data to s_server?

2007-05-23 Thread gary clark
Hello, I want to see a message from my test client to the openssl s_server. I connect fine. However when I send a message to the server I see from the following: C:\www\opensssl\bin\openssl.exe s_server -accept 2000 -debug -nocert Loading 'screen' into random state - done Using default temp DH

RE: Newbie questions

2007-05-23 Thread gary clark
Hey Mark, Yep I think your right. Ordered the Network Security with OpenSSL book. Thanks, Garyc --- Mark [EMAIL PROTECTED] wrote: Hi, I downloaded and installed open-ssl on a windows environment. I then used the openssl application to start the s_client and s_server. I ran the

Re: Newbie questions

2007-05-23 Thread gary clark
an abstract of it and instead found the entire book. Chaz On 5/23/07, gary clark [EMAIL PROTECTED] wrote: Hey Mark, Yep I think your right. Ordered the Network Security with OpenSSL book. Thanks, Garyc --- Mark [EMAIL PROTECTED] wrote: Hi, I downloaded and installed

Re: Newbie questions

2007-05-23 Thread gary clark
Excellent Chas. Thanks, Garyc --- Chas. [EMAIL PROTECTED] wrote: When I get back to my house this evening I will send you the file. Will that be alright? Chas. On 5/23/07, gary clark [EMAIL PROTECTED] wrote: Hey Chas, You dont happen to know the link. Did a quick search

Re: Newbie questions

2007-05-25 Thread gary clark
Much appreciated Endhy. Garyc --- Endhy Aziz [EMAIL PROTECTED] wrote: I wrote : One of the chapter, Designing With SSL may help . Should be : One of the chapter, Coding With SSL may help Regards, --Endhy

openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
Hello, Took the client and server code from the Network Security with OpenSSL chapter 5. Built the server and client code non-secure. This part worked like a charm. Having a problem building the secure version. I'm using Windows VC++ and windows and attempting to use the 5.5 client. I would

Re: openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
Hello, Running Windows and built using VC++. I have discovered that my SSL_CTX * is null when attempting to call: SSL_CTX * ctx = SSL_CTX_new(SSLv23_client_method()); why would this happen? Its a little confusing it builds fine. Thanks, Garyc SSL_CTX * ctx = --- gary clark [EMAIL PROTECTED

Re: openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
kind to enlighten me on what I'm doing wrong? Thanks, Garyc --- gary clark [EMAIL PROTECTED] wrote: Hello, Running Windows and built using VC++. I have discovered that my SSL_CTX * is null when attempting to call: SSL_CTX * ctx = SSL_CTX_new(SSLv23_client_method()); why would

Re: openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
the following error: error:0906D06C:PEM routines:PEM_read_bio:no start line.\crypto\pem\pem_lib.c647 Expecting: ANY PRIVATE KEY I must apologise for any inconvenience on this in advance. I'm just learning to crawl at the moment. Thanks, Garyc --- gary clark [EMAIL PROTECTED] wrote: My Bad. I missed

Re: openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
) { ERR_print_errors_fp(stderr); printf(Error loading private key file!); } Thanks, Garyc --- gary clark [EMAIL PROTECTED] wrote: Hello, I managed to get past the problem of loading the certificate: I am now calling the below

Re: Generating a server certificate

2007-05-28 Thread gary clark
Oh well decided to read the book. Wow! amazing simply reading a book can answer all your questions and if you follow simple rules for building certficates you can actually build a secure connection. Marvelous. Very happy. Got a server and client working like a charm. Cheers, Garyc --- gary clark

Re: static openssl window libs in VC++

2007-05-29 Thread gary clark
Static libs are present in openssl-0.9.8e\out32dll. Thanks, garyc __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List

openssl clients for windows

2007-05-31 Thread gary clark
Hello, Using 0.8.9e. Attempting to port my openssl testclient to a XP machine which does not have the complete install of openssl. I took the ssleay32.dll and libeay32.dll and installed them in the system32 directory. When running the client I am seeing it crash with the message The application

Re: openssl clients for windows

2007-06-01 Thread gary clark
on this? Thanks, Garyc --- Victor B. Wagner [EMAIL PROTECTED] wrote: On 2007.05.31 at 22:28:27 -0700, gary clark wrote: Hello, Using 0.8.9e. Attempting to port my openssl testclient to a XP machine which does not have the complete install of openssl. I took the ssleay32.dll

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 Victor

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: Friday, June 01

RE: openssl clients for windows

2007-06-01 Thread gary clark
system drive, and stick a copy of it somewhere on the path. Regards, Simon Edwards Communications Software Development Micro Focus -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: 01 June 2007 13:55 To: openssl-users

RE: openssl clients for windows

2007-06-01 Thread gary clark
of it somewhere on the path. Regards, Simon Edwards Communications Software Development Micro Focus -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: 01 June 2007 13:55 To: openssl-users@openssl.org Subject: Re: openssl clients

RE: openssl clients for windows

2007-06-01 Thread gary clark
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 11:52 AM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hello, I changed my codeGeneration for the console application to be /MT. It appears to be the only way I can at least

RE: openssl clients for windows

2007-06-01 Thread gary clark
the batch file (double click will also do). Try it out --Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 12:18 PM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Thanks Amit

RE: openssl clients for windows

2007-06-01 Thread gary clark
WNetRestoreConnectionA is highlighted in red. Thanks, Garyc --- Amit Hakoo [EMAIL PROTECTED] wrote: 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

RE: openssl clients for windows

2007-06-01 Thread gary clark
to Interpret Warnings and Errors in Dependency Walker section in help for more details. Thanks, Garyc --- gary clark [EMAIL PROTECTED] wrote: 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

Re: RE: openssl clients for windows

2007-06-04 Thread gary clark
B. Wagner [EMAIL PROTECTED] wrote: On 2007.06.01 at 07:35:37 -0700, gary clark wrote: 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 If you use /MD you might need debug

OpenSSL leak on Windows

2007-06-08 Thread gary clark
Hello, Using openssl-0.9.8e on Windows XP. I am seeing a leak when running openSSL. Specifically OPENSSL_Applink: GetModuleFileNameA [C:\WINDOWS\system32\kernel32.dll] OPENSSL_AppLink[opensslclient.exe]