本文实例讲述了C#加密app.config中连接字符串的方法。分享给大家供大家参考。具体如下:
连接字符串中包含数据库的访问信息,帐号和密码,因此一般不以明文显示,本代码用来加密连接字符串。
public static class EncryptConnection
{
public static void EncryptConnectionString(bool encrypt)
{
Configuration configFile = null;
try
{
// Open the configuration file and retrieve the
2021-10-08 15:20:56
32KB
app
c
c#
1