vote up 2 vote down star

Hi,

Writing a little TCP/IP client server app. Basically it creates a server, and then you can create several different clients and set up a bit of a chat session. What I am wondering is there is any way to incorporate, using standard .net libraries some form of encryption?

m_mainSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);

Is there any way of speficying tcp using rsa?

Or would you (me that is) have to write some custom libaries to do key exchange and then encrypt the subsequent chat messages? I have done that before for uni but that was in java but I know it would'nt be hard to convert them. Just trying not to have to reinvent the wheel...

Or what about utilising a ssl?

Thanks, Ron.

flag

52% accept rate
Related: stackoverflow.com/questions/4004/… – lothar Jun 2 at 1:18

2 Answers

vote up 0 vote down

Just wrap it around a library, or alternatively, an SSL tunnel application.

link|flag
Thanks, i'll take a look. – flavour404 Jun 8 at 20:21
vote up 1 vote down

The simplest way to encrypt your communication would be to just wrap the entire socket stream in a SslStream.

This is made to work directly with TcpClient/TcpListener, so it's very easy to encrypt a data stream using this.

link|flag
Thanks, that looks exactly like the answer I was looking for. I will get on this asap. Thanks, Ron. – flavour404 Jun 8 at 20:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.