Reputation: 290
I'm trying to do some sort Server which handles Client packets in C# (some sort of an Authentication Platform) and I need encryption for the packets. I've been searching on the Internet and I didn't find what I was searching.
I also thought about using RSA (4096) but I am not sure of this idea.
Can you recommend me a safe and good (strong too) to encrypt packets, please?
Regards.
Upvotes: 0
Views: 2501
Reputation: 2178
Try this http://msdn.microsoft.com/en-us/library/system.net.security.sslstream.aspx SslStream. If not you have to build your own Mechanism.
Upvotes: 1