摘要:
1.这种方式也可以做到对文件的加密压缩,解密解压缩,只是在压缩和解压缩时会出现压缩窗口 1.1加密压缩 1.2解密解压 1 public bool UZip(string strzipPath, string strtxtPath,string password) 2 { 3 try 4 { 5 S 阅读全文
摘要:
1.最近研究了下利用SQLite为db文件简单的加密和解密 1 private static SQLiteConnection GetConnection() 2 { 3 SQLiteConnection conn; 4 string password = dataProvider.ConfigSe 阅读全文
摘要:
这里我们选用ICSharpCode.SharpZipLib这个类库来实现我们的需求。 下载地址:http://icsharpcode.github.io/SharpZipLib/ 1.单个或多个文件加密压缩 2.单个或多个加密压缩包解压 1 class UnZipClass 2 { 3 public 阅读全文