1. 首页
  2. 编程语言
  3. C#
  4. 使用DES加密解密字符串并保存为文件的类

使用DES加密解密字符串并保存为文件的类

上传者: 2021-04-19 09:17:49上传 CS文件 4.03KB 热度 10次
使用DES加密,解密字符串,并保存为文件的类。 先读取一个文件加密,再保存为另一个文件。解压则反之。 List result = new List(); using (StreamReader smRead = new StreamReader(textBox1.Text.Trim(), System.Text.Encoding.Default)) { //设置路径 string line; while ((line = smRead.ReadLine()) != null) { string en = EncryptAndDecrypt.EncryptDES(line, "intproue"); result.Add(en); } EncryptAndDecrypt.SaveToTxtFile(result, false, textBox2.Text.Trim()); smRead.Close(); } MessageBox.Show("完成");
用户评论