C# 數據庫連接字符串加密工具

https://www.cnblogs.com/wendj/p/9019160.htmlhtml

有些項目尤爲是WinForm或者是WPF項目,針對一些工具形式的小項目,不想軟件流出去以後,懂程序的的拿到手以後一看配置文件就知道了咱們數據庫的用戶名和密碼,若是外網能訪問的話,那就麻煩大了。因此這裏爲了防止項目外泄以後這些信息不被別人看到,咱們就須要對連接字符串或者其餘重要信息進行加密,用的時候在解密。算法

思路:使用兩個數對鏈接字符串進行加密,再用這兩個數進行解密。數據庫

1
<add key= "ConfigString"  value= "4HsXBRNXTkeN0ZoKdEwFE501TKSqLZUyJ0Zf+C7s5+gPd1SbWBiuh4PG6jeFgcnCTFr0QFW8FN40m/S8xmQq+8srL8taMLO23z6GSmaQJoM=" />

  

直接上代碼:安全

1:定義一個初始化源數據的類。服務器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public  class  ConfigInformation
{
     private  static  ConfigInformation _configInformation;
 
     public  ConfigInformation Instance
     {
         get
         {
             if  (_configInformation ==  null )
             {
                 _configInformation =  new  ConfigInformation();
             }
             return  _configInformation;
         }
     }
     // 數據庫連接字符串加解密 Key Value
     public  static  String Key =  "27e167e9-2660-4bc1-bea0-c8781a9f01cb" ;
     public  static  String Vector =  "8280d587-f9bf-4127-bbfa-5e0b4b672958" ;
 
}

  

2:加解密方法:工具

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/// <summary>
/// 加密 解密
/// </summary>
public  class  DecryptAndEncryptionHelper
{
     private  readonly  SymmetricAlgorithm _symmetricAlgorithm;
     private  const  String DefKey =  "qazwsxedcrfvtgb!@#$%^&*(tgbrfvedcwsxqaz)(*&^%$#@!" ;
     private  String _key =  "" ;
     public  String Key
     {
         get  return  _key; }
         set
         {
             if  (!String.IsNullOrEmpty(value))
             {
                 _key = value;
             }
             else
             {
                 _key = DefKey;
             }
         }
     }
 
     private  const  String DefIV =  "tgbrfvedcwsxqaz)(*&^%$#@!qazwsxedcrfvtgb!@#$%^&*(" ;
     private  String _iv =  "" ;
     public  String IV
     {
         get  return  _iv; }
         set
         {
             if  (!String.IsNullOrEmpty(value))
             {
                 _iv = value;
             }
             else
             {
                 _iv = DefIV;
             }
         }
     }
     public  DecryptAndEncryptionHelper()
     {
         _symmetricAlgorithm =  new  RijndaelManaged();
     }
 
     public  DecryptAndEncryptionHelper(String Key, String IV)
     {
         _symmetricAlgorithm =  new  RijndaelManaged();
         _key = String.IsNullOrEmpty(Key) ? DefKey : Key;
         _iv = String.IsNullOrEmpty(IV) ? DefIV : IV;
     }
     /// <summary>
     /// Get Key
     /// </summary>
     /// <returns>密鑰</returns>
     private  byte [] GetLegalKey()
     {
         _symmetricAlgorithm.GenerateKey();
         byte [] bytTemp = _symmetricAlgorithm.Key;
         int  KeyLength = bytTemp.Length;
         if  (_key.Length > KeyLength)
             _key = _key.Substring(0, KeyLength);
         else  if  (_key.Length < KeyLength)
             _key = _key.PadRight(KeyLength,  '#' );
         return  ASCIIEncoding.ASCII.GetBytes(_key);
     }
 
     /// <summary>
     /// Get IV
     /// </summary>
     private  byte [] GetLegalIV()
     {
         _symmetricAlgorithm.GenerateIV();
         byte [] bytTemp = _symmetricAlgorithm.IV;
         int  IVLength = bytTemp.Length;
         if  (_iv.Length > IVLength)
             _iv = _iv.Substring(0, IVLength);
         else  if  (_iv.Length < IVLength)
             _iv = _iv.PadRight(IVLength,  '#' );
         return  ASCIIEncoding.ASCII.GetBytes(_iv);
     }
 
     /// <summary>
     /// Encrypto 加密
     /// </summary>
     public  string  Encrypto( string  Source)
     {
         byte [] bytIn = UTF8Encoding.UTF8.GetBytes(Source);
         MemoryStream ms =  new  MemoryStream();
         _symmetricAlgorithm.Key = GetLegalKey();
         _symmetricAlgorithm.IV = GetLegalIV();
         ICryptoTransform encrypto = _symmetricAlgorithm.CreateEncryptor();
         CryptoStream cs =  new  CryptoStream(ms, encrypto, CryptoStreamMode.Write);
         cs.Write(bytIn, 0, bytIn.Length);
         cs.FlushFinalBlock();
         ms.Close();
         byte [] bytOut = ms.ToArray();
         return  Convert.ToBase64String(bytOut);
     }
 
     /// <summary>
     /// Decrypto 解密
     /// </summary>
     public  string  Decrypto( string  Source)
     {
         byte [] bytIn = Convert.FromBase64String(Source);
         MemoryStream ms =  new  MemoryStream(bytIn, 0, bytIn.Length);
         _symmetricAlgorithm.Key = GetLegalKey();
         _symmetricAlgorithm.IV = GetLegalIV();
         ICryptoTransform encrypto = _symmetricAlgorithm.CreateDecryptor();
         CryptoStream cs =  new  CryptoStream(ms, encrypto, CryptoStreamMode.Read);
         StreamReader sr =  new  StreamReader(cs);
         return  sr.ReadToEnd();
     }
}

  3:使用加密

1
2
3
4
5
6
7
// 獲取加密的連接字符串,而後解密
string  enString = ConfigurationManager.AppSettings[ "ConfigString" ];
DecryptAndEncryptionHelper helper =  new  DecryptAndEncryptionHelper(ConfigInformation.Key, ConfigInformation.Vector);
 
// 明文
var  configStr = helper.Decrypto(enString);
return  configStr;

  

這樣至少保證了數據的不外泄。spa

注意:這個加密和解密的算法方法,應該放在服務器。經過請求加解密方法。不該該放在本地代碼裏,技術牛的的人,把你的項目反編譯同樣能夠看到源代碼。code

 

 咱們在把加密源數據找出來。orm

因此這個加解密代碼不能寫在本地,必須部署到安全的服務器上。

相關文章
相關標籤/搜索