Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / C#

Simple Encryption in C#

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
11 May 2010CPOL 23.4K   8  
Encrypt Functionstring passPhrase = "Pas5pr@se"; // can be any string string saltValue = "s@1tValue"; // can be any string string hashAlgorithm = "SHA1"; // can be "MD5" int passwordIterations = 2; // can be any number ...

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

No alternatives have been posted.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions