encryption

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

is there any built in encryption in .NET that would let me easily encrypt a
string and decript it? thanks!
 
* "Brian Henry said:
is there any built in encryption in .NET that would let me easily encrypt a
string and decript it? thanks!

Have a look at the classes in the 'System.Security.Cryptography'
namespace. You will find classes for many cryptographic algorithms
there.
 
I've never done any encrypting, but you might want to look at
System.Security.Cryptography
 
Back
Top