Memory leaks

2001-07-27 Thread Gleison Santos
Hi all. I followed instructions in http://marc.theaimsgroup.com/?l=openssl-users&m=99494629705968&w=2 to find memory leaks in my application. The output generated by CRYPTO_mem_leaks_fp (as show below) tells me that 899 bytes were leaked but the sum of all reported bytes is 1608. Is that a bug

Re: SSL samples under win32

2001-02-06 Thread Gleison Santos
Hi, The problem is in your Makefile (include order of ssl and crypto). Try a Makefile something like: CC=gcc CFLAGS= -g -I../../include -I../../ssl -I../../crypto -Wall LIBS= -L../.. -lssl -lcrypto EXAMPLES=cli all: $(EXAMPLES) cli: cli.o $(CC) cli.o -o cli $(LIBS) clean: rm -f $(EXAMPLES

Re: SSL version 2

2001-02-02 Thread Gleison Santos
Patrick, see a security server survey at https://secure1.securityspace.com/cgi-bin/session/docserv?doc=/s_ssurvey/data/200101/com/protciph.html []'s Gleison Patrick Li wrote: > Hi, > > This is a general question about SSL. I read a SSL book and it mentions > there are still a lot of sites su

Re: sample server application using open SSL

2001-01-05 Thread Gleison Santos
Hi all, Eric, I´ve read your book and run examples in it but I do have a problem with them (with your examples, not your book). They don´t validate certificates, don´t verify if they are valid (even the simplest thing: validate dates). What I want (and need to) is construct a very simple client