Thanks for the help.
Now, I'm trying to build the samples and I'm getting link errors:
[Linker Error] Unresolved external '_SSL_library_init' referenced
from C:\ARQUIVOS DE
PROGRAMAS\BORLAND\CBUILDER5\PROJECTS\TESTE\TSERVER.OBJ
[Linker Error] Unresolved external
Vanessa Campos wrote:
Hi,
I'm starting to use openssl now.
Does anyone know where I can find some sample code using openssl (a
simple client / server sample) so I could see how it works.
I'm tring to read the docs, but it'd be less complicated to me if I
could see a real one working.
Try htt
Hi,
I'm starting to use openssl now.
Does anyone know where I can find some sample code using openssl (a
simple client / server sample) so I could see how it works.
I'm tring to read the docs, but it'd be less complicated to me if I
could see a real one working.
Sorry, I forgot to tell: I'm worki
Hi,
I'm starting to use openssl now.
Does anyone know where I can find some sample code using openssl (a
simple client / server sample) so I could see how it works.
I'm tring to read the docs, but it'd be less complicated to me if I
could see a real one working.
Thanks,
Vanessa Campos
[EMAIL PR
I used free() for dealocation stuff, because Free() isn't any more in
windows. I have win nt and things seem to work fine. But let me make some
tests tomorrow. Ok?
The real problem for me are client_s and server_s witch could not work on my
win nt machine. I think that those examples are made to w
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
No, the space is allocated by X509_NAME_oneline(). In the demo source,
it's deallocated by Free() (with a capital F), but this function is not
available in Win32. Using free() (lowercase F) causes a GPF. My doubt is,
what should I use?
Juan
lucian wrote:
> Hi Juan!
> I spretty simple: with free
Hi. Trying to compile the cli.cpp (is a .c actually) sample under Win32
(VC5), I find out it uses a function called Free() to deallocate the
strings returned by the query server certificate functions -- there's no
such function available. free(), with a lowercase f, GPFs the program. How
do I deal