Click here to Skip to main content
Licence 
First Posted 24 Nov 2001
Views 247,459
Bookmarked 63 times

CSslSocket - SSL/TLS enabled CSocket

By | 24 Nov 2001 | Article
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

About the Author

Martin Ziacek

Software Developer (Senior)

United Kingdom United Kingdom

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionLicense Pinmembertalbot0:21 4 Jul '11  
QuestionHow to enable TLS? PinmemberStefanKittel11:29 13 Dec '09  
AnswerRe: How to enable TLS? PinmemberArt Joyce4:04 3 Feb '12  
QuestionDoes Schannel support DTLS protocol? PinmemberD L Deepthi19:37 7 Dec '08  
QuestionDecryptMessage fails with SEC_E_DECRYPT_FAILURE (0x80090330L) error Pinmemberdeepthi_dl4:16 23 Sep '08  
GeneralLarge message will hangs the server Pinmemberpip.chan21:20 6 May '08  
When data more than 4096, it will hangs the server ? Why?
GeneralRe: Large message will hangs the server Pinmemberpip.chan22:43 6 May '08  
GeneralRe: Large message will hangs the server Pinmemberpip.chan0:09 7 May '08  
QuestionServer requests client cert problem ? PinmemberMichael Chourdakis5:56 24 Nov '07  
QuestionServer-auth-only with exportable public cert. & .PVK file PinmemberBritannicAndy1:45 2 Aug '07  
Questionerror 0x80090304 Pinmemberdpfairchild11:19 4 May '07  
AnswerRe: error 0x80090304 Pinmemberisapiyan15:53 16 May '07  
Generalerror in CSslSocket::ClientHandshakeLoop. PinmemberMazhar Nazeer2:04 22 Nov '06  
GeneralSchannel offline decryption Pinmemberabhalve21:11 28 Sep '06  
Questionalways return find not found Pinmembertin nguyen trung6:27 24 Sep '06  
QuestionHow to implement on windows 2003 Pinmembertin nguyen trung5:02 23 Sep '06  
GeneralStack Corruption PinmemberI.C.Wiener11:32 19 Mar '06  
GeneralRe: Stack Corruption Pinmemberncranger22:50 6 Apr '06  
QuestionMartin - You Still Around? Pinmembermjxnjx212:35 1 Mar '05  
GeneralLDAP TLS connection Pinmembermeghan0:50 20 Jan '05  
GeneralRoot CA certificate Pinmemberstanr3:49 14 Sep '04  
GeneralBug in extra data handligh PinmemberIrek Zielinski22:38 24 Jul '04  
GeneralRe: Bug in extra data handligh PinmemberDarkstructures22:01 4 Apr '05  
GeneralRe: Bug in extra data handligh PinmemberI.C.Wiener18:14 19 Mar '06  
GeneralCrashes when sending multiple packets PinmemberGNZ8:08 4 May '04  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 25 Nov 2001
Article Copyright 2001 by Martin Ziacek
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid