2

只是想问一下在.Net桌面应用程序中隐藏敏感数据(ftp帐户,数据库连接字符串等)的最佳方法是什么......请有任何建议...... :)

我知道将数据放入应用程序并记住如果应用程序将被反混淆或反编译,隐藏的数据将被暴露出来。

我尝试使用应用程序设置

Properties.Settings.Default.MyConnectionString = theConString;

但反编译时仍然可以看到数据。

请有任何建议。

4

1 回答 1

5

您可以加密全部或部分 app.config 文件。这对于保护数据库连接字符串特别常见。

这是有关如何做到这一点的详细文章。简而言之,这里是加密 app.config 中连接字符串部分的代码:

static void ToggleConfigEncryption(string exeConfigName)
{
    // Takes the executable file name without the
    // .config extension.
    try
    {
        // Open the configuration file and retrieve 
        // the connectionStrings section.
        Configuration config = ConfigurationManager.
            OpenExeConfiguration(exeConfigName);

        ConnectionStringsSection section =
            config.GetSection("connectionStrings")
            as ConnectionStringsSection;

        if (section.SectionInformation.IsProtected)
        {
            // Remove encryption.
            section.SectionInformation.UnprotectSection();
        }
        else
        {
            // Encrypt the section.
            section.SectionInformation.ProtectSection(
                "DataProtectionConfigurationProvider");
        }
        // Save the current configuration.
        config.Save();

        Console.WriteLine("Protected={0}",
            section.SectionInformation.IsProtected);
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }
}
于 2012-04-22T16:30:40.140 回答