public static string Encrypt(string password) { if (string.IsNullOrEmpty(password)) { return(string.Empty); } return(StringCipher.GetPasswordHash(password)); }