News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

SSL connection

Started by Danesh, July 21, 2006, 11:42:58 PM

Previous topic - Next topic

Danesh

Hi all,

Does anybody know how a SSL (Secure Socket Layer) connection can be established by from assembly win32? I already have written and tested a powerful server which handles incomming requests concurrently. I need to know how can I communicate with clients in SSL mode. I have visited www.openssl.org which is an open source project but it was only for Linux. Is there any other API which can be used from MASM?

Yours,

D.


arafel

OpenSSL can be compiled on windows too.
If you still don't want to use it, then read about windows' SSPI/Schannel interface. It provides support for SSL v2 up to TLS v1 iirc.
Platform SDK has some C examples in ~\SSPI\SSL folder.

Danesh

Thank you arafel. I am working on OpenSSL to compile it on Windows. I found some useful information on net too. Thanks for the tip.