Secure Communication over network

  • Thread starter Thread starter mikec1981
  • Start date Start date
M

mikec1981

Hi,

I'm new to VB.NET, I previously used VB6.

I am trying to write a client / server application and I want to be
able to securely send commands between these applications and the
client needs to logon to the client via password and commands need to
be encrypted.

To do this previously I just used the Winsock control but I want to
use some of vb.net's native features instead of the Winsock control.

I've done a little reading on remoting and socket controls but I don't
know where to start, if anyone could point me in the right direction
I'd really appreciate it!


Thanks,
Mike Carter
 
Hi,

I'm new to VB.NET, I previously used VB6.

I am trying to write a client / server application and I want to be
able to securely send commands between these applications and the
client needs to logon to the client via password and commands need to
be encrypted.

To do this previously I just used the Winsock control but I want to
use some of vb.net's native features instead of the Winsock control.

I've done a little reading on remoting and socket controls but I don't
know where to start, if anyone could point me in the right direction
I'd really appreciate it!


Thanks,
Mike Carter



----------------------------------------------------------

----------------------------------------------------------
color]

Well, Mike you'll want to look at the documentation and samples for the
following namespaces...

System.Net
System.Net.Sockets
System.Security.Cryptography
 
Back
Top