SSL Support in .NET Compact Framework 3.5
I have a class that is written for the .NET Compact Framework 3.5 which is nothing more than a wrapper for the System.Net.Sockets.TcpClient class.
I would like my class to support SSL between the client and the server, but it appears开发者_运维知识库 as though the CF doesn't support it. More specifically, the System.Net.Security namespace (which is where the SslStream class lives) is not included in the CF.
How can I support SSL in my TcpClient wrapper that is targeted for the .NET Compact Framework 3.5?
One of the options is to use the components in SSLBlackbox package of our SecureBlackbox product. It is available for .NET CF (as well as .NET desktop, mono and Silverlight).
精彩评论