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 __ O

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 wrote: > From: Antoine Pitrou > 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 : > > Impor

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

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, Ga

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, Ga

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 t

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 > whi

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

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 u

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 fail

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 DH

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. > >

Re: Newbie questions

2007-05-23 Thread gary clark
ago thinking I would find 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

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: > > > &g

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 like

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 PROTEC

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_ne

Re: openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
My Bad. I missed the SSL_library_init() call. Sorry. Thanks, Garyc --- david kine <[EMAIL PROTECTED]> wrote: > Did you call > "SSL_library_init()","SSL_load_error_strings()", > etc.? > > gary clark <[EMAIL PROTECTED]> wrote: Hello, > &g

Re: openssl question on Network Security with OpenSSL book example

2007-05-25 Thread gary clark
I see the following error: error:0906D06C:PEM routines:PEM_read_bio:no start line.\crypto\pem\pem_lib.c"647 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 PROTECTE

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: > >

Generating a server certificate

2007-05-26 Thread gary clark
Hello, I'm attempting to load a server certificate into a server. I create the certificate using the following: Generate a CA 1)openssl req -out ca.pem -new -x509 -generates CA file "ca.pem" and CA key "privkey.pem" Generate server certificate/key pair - no password requi

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

static openssl window libs in VC++

2007-05-29 Thread gary clark
Hello, Could somebody out there tell me how to build the following static libs in Windows VC++. libeay32.lib and ssleay32.lib The .dll I have are both shared libs. I'm using openssl-0.9.8e. Thanks, Garyc __ OpenSSL Project

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 Man

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
an somebody shed some light 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

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 >

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

RE: openssl clients for windows

2007-06-01 Thread gary clark
lthough, again, its not on the system > path and will > initially give you the same load error. So go hunt > for it on your system > drive, and stick a copy of it somewhere on the path. > > > Regards, > > Simon Edwards > Communications Software Development > Mi

RE: openssl clients for windows

2007-06-01 Thread gary clark
ed somewhere, as it gets installed alongside > the .NET > installation. Although, again, its not on the system > path and will > initially give you the same load error. So go hunt > for it on your system > drive, and stick a copy of it somewhere on the path. > > > Regards

RE: openssl clients for windows

2007-06-01 Thread gary clark
plication failed to start because the apllication configuration is incorrect. The same happenned for the libeay32.dll. Can somebody explain what is happenning? Thanks, Garyc --- gary clark <[EMAIL PROTECTED]> wrote: > Hello, > > I ran the dependency walker and performed a

RE: openssl clients for windows

2007-06-01 Thread gary clark
n via the Dependency > walker UI > > --Amit > > -Original Message----- > From: [EMAIL 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

RE: openssl clients for windows

2007-06-01 Thread gary clark
s\ntdll.mak > nmake -f ms\ntdll.mak test > nmake -f ms\ntdll.mak install > > Put the batch file under \\0.9.8e\openssl-0.9.8e. > Then run the batch > file (double click will also do). > > Try it out > > --Amit > > -Original Message- > From: [EMAIL

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 clar

RE: openssl clients for windows

2007-06-01 Thread gary clark
"How 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 ssleay

Re: RE: openssl clients for windows

2007-06-04 Thread gary clark
ictor 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 the

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] malloc[C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e8e3b_8.0.50727.762_x-ww_6b128700\