隐藏重要数据
本文关键字:数据 隐藏 | 更新日期: 2023-09-27 18:31:58
只是想问一下在.Net桌面应用程序中隐藏敏感数据(ftp帐户,数据库连接字符串等)的最佳方法是什么..请提出任何建议.. :)
我知道将数据放入应用程序中,并记住如果应用程序将被取消混淆或反编译,隐藏的数据将被暴露。
我尝试使用应用程序设置
Properties.Settings.Default.MyConnectionString = theConString;
但是在反编译时仍然可以保留数据。
请提出任何建议。
您可以加密全部或部分 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);
}
}