Ciao visto che si tratta di una password ti consiglio un algoritmo SHA (Secure Hash Algorithm).
Nello specifico va bene anche lo SHA1.
Di seguito un' implementazione dell'algoritmo
SHA1 in C#:
//Va importato il namespace System.Security.Cryptography
public static string GetSHA1(string text, Encoding enc)
{
byte[] buffer = enc.GetBytes(text);
SHA1CryptoServiceProvider cryptoTransformSHA1 = new SHA1CryptoServiceProvider();
string hash = BitConverter.ToString(cryptoTransformSHA1.ComputeHash(buffer)).Replace("-", "");
return hash;
}