/code/StringHasher
  zipped souce

More messing around with crypto in .NET. Instead of two-way encryption, I went for a one-way hash this time. This would be great for hashing passwords or signing a long string.

The program really just wraps up hashing a string using anything that inherits from the HashAlgorithm class in System.Security.Cryptography. It allows for a salt and a encoding method and is really pretty flexible. Thanks to the built-in classes, the work to actually perform the hash is sickenly short. So wonderful..

If you have comments or patches or anything, lemme know.