private static string GetEncryptedPassword(string password) { // Since we will be communicating with the same server it is safe so always use the latest version encryption return(EncryptPasswordForWebServiceRequest.Encrypt(password, EncryptPasswordForWebServiceRequest.EMPTY_VERSION)); }
private static string GetEncryptedPassword(string password) { return(EncryptPasswordForWebServiceRequest.Encrypt(password, new Version(Settings.Get(Settings.Configs.Version)))); }