Encryptes password.
This sample shows how to use the encryptPassword method.
ForAspNet.Parole.License.LicenseKey = "<put license string here>";
Parole objParole = new Parole();
string encrypedPassword = objParole.encryptPassword("password");
Console.WriteLine("Encryped Password: " + encrypedPassword);
Console.WriteLine("Decryped Password: " + objParole.decryptPassword(encrypedPassword));
Console.WriteLine("Press Enter to exit...");
Console.ReadLine();
Parole Class | ForAspNet.Parole Namespace | String | String