Click here to Skip to main content
15,867,756 members
Articles / Desktop Programming / MFC
Article

CSslSocket - SSL/TLS enabled CSocket

Rate me:
Please Sign up or sign in to vote.
4.60/5 (12 votes)
24 Nov 20012 min read 829.8K   11.1K   83   136
CSocket derived class with SSL/TLS extension

Motivation

Having seen SSL samples from Platform SDK (WebServer and WebClient) I found, it would be useful to benefit from SSL/TLS functionality built in Windows. However, these samples are not very user friendly - you can learn from them how SSL/TLS works in Windows, but adapt it to different applications is not easy.

Description of solution

I am sure everybody knows CSocket from MFC and has seen samples CHATTER / CHATSRVR - that's place where I started - my idea was to derive CSslSocket from CSocket and extend it with SSL functionality.

It means that CSslSocket works in the same way as CSocket and there are several small differences in the declarations of Create() and Listen() methods:

BOOL Create(
	UINT nSocketPort = 443,
	LPCTSTR lpszSocketAddress = NULL,
	const TCHAR *szCertName = NULL,
	BOOL bMachineStore = FALSE,
	DWORD dwProtocol = 0);
BOOL Listen(
	int nConnectionBacklog = 5,
	BOOL bAuthClient = FALSE);

Parameters nSocketPort, lpszSocketAddress are the same parameters as CSocket has. SSL/TLS are a stream based protocols, therefore you cannot specify SOCK_DGRAM in this method as it is possible for CSocket. However, you can specify name of certificate (you must have certificate for server side), certificate store  and preferred protocol (see SCHANNEL_CRED). Client certificate is not required, but you can force SSL engine to require it. In this case set bAuthClient to TRUE in call to Listen() method.

You can find more information about SSL/TLS and Schannel at locations specified at the begging of the article.

Usage

You can use CSslSocket exactly as you are using CSocket, use it directly, or derive your new class from CSslSocket and overwrite required method. See modified samples provided with this article.

Demo program(s)

There are modified samples from Microsoft CHATTER / CHATSRVR for demonstration of CSslSocket usage and work in the zipped file. Modifications are small - just CSocket is replaced with CSslSocekt and there is code to pass proper parameters to the CSslSocket class. You need one or two certificates to test my class. Simplest way is to install Certificate services from Microsoft and request certificates for client and server identification by web forms provided by Certificate services (you need Windows NT/2000 server), or you can use OpenSSL as well. Then just specify server certificate name for CHATSRVR  in the first dialog window and user certificate name for CHATTER.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: The Chatsrv doesn't run Pin
GUESDON Vincent11-Oct-02 6:31
sussGUESDON Vincent11-Oct-02 6:31 
GeneralRe: The Chatsrv doesn't run Pin
Martin Ziacek11-Oct-02 10:13
Martin Ziacek11-Oct-02 10:13 
GeneralRe: The Chatsrv doesn't run Pin
Anonymous11-Oct-02 10:21
Anonymous11-Oct-02 10:21 
GeneralRe: The Chatsrv doesn't run Pin
Martin Ziacek11-Oct-02 10:32
Martin Ziacek11-Oct-02 10:32 
GeneralRe: The Chatsrv doesn't run Pin
GUESDON Vincent11-Oct-02 10:37
sussGUESDON Vincent11-Oct-02 10:37 
GeneralRe: The Chatsrv doesn't run Pin
Martin Ziacek11-Oct-02 10:51
Martin Ziacek11-Oct-02 10:51 
GeneralRe: The Chatsrv doesn't run Pin
GUESDON Vincent11-Oct-02 10:50
sussGUESDON Vincent11-Oct-02 10:50 
Questionno client certificate? Pin
Anonymous10-Oct-02 10:40
Anonymous10-Oct-02 10:40 
AnswerRe: no client certificate? Pin
Martin Ziacek10-Oct-02 11:48
Martin Ziacek10-Oct-02 11:48 
GeneralRe: no client certificate? Pin
Anonymous10-Oct-02 12:30
Anonymous10-Oct-02 12:30 
GeneralRe: no client certificate? Pin
Martin Ziacek10-Oct-02 12:41
Martin Ziacek10-Oct-02 12:41 
GeneralRe: no client certificate? Pin
Martin Ziacek10-Oct-02 20:39
Martin Ziacek10-Oct-02 20:39 
GeneralRe: no client certificate? Pin
Anonymous11-Oct-02 7:25
Anonymous11-Oct-02 7:25 
GeneralRe: no client certificate? Pin
Martin Ziacek11-Oct-02 10:10
Martin Ziacek11-Oct-02 10:10 
GeneralRe: no client certificate? Pin
Wenderson27-Dec-02 6:43
Wenderson27-Dec-02 6:43 
GeneralRe: no client certificate? Pin
Wenderson27-Dec-02 6:45
Wenderson27-Dec-02 6:45 
QuestionHow to install the class in my own app ? Pin
Christian Meunier9-Oct-02 7:26
sussChristian Meunier9-Oct-02 7:26 
AnswerRe: How to install the class in my own app ? Pin
Martin Ziacek9-Oct-02 8:33
Martin Ziacek9-Oct-02 8:33 
Generaltoo complex Pin
Atrament8-Oct-02 23:36
Atrament8-Oct-02 23:36 
GeneralRe: too complex Pin
Martin Ziacek9-Oct-02 0:33
Martin Ziacek9-Oct-02 0:33 
GeneralProblems.. Pin
Anonymous2-Sep-02 23:09
Anonymous2-Sep-02 23:09 
GeneralRe: Problems.. Pin
Martin Ziacek2-Sep-02 23:48
Martin Ziacek2-Sep-02 23:48 
GeneralRe: Problems.. Pin
Anonymous3-Sep-02 22:45
Anonymous3-Sep-02 22:45 
GeneralRe: Problems.. Pin
Martin Ziacek4-Sep-02 0:57
Martin Ziacek4-Sep-02 0:57 
GeneralRe: Problems.. Pin
Anonymous4-Sep-02 20:21
Anonymous4-Sep-02 20:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.