• 大小: 0.05M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 加密  C#  文件  解密  c  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Security.Cryptography;
using System.Text;
using System.IO;
using System.Windows.Forms;

namespace Curllion
{
 public class Crypt
 {
  /// 
  /// 新建一个大小为10261B的文件,以便将加密数据写入固定大小的文件。
  /// 

  /// 文件保存的地址,包含文件名
  public static void InitBinFile(string filePath)
  {
   byte[] tmp = new byte[10261];
   try  //创建文件流,将其内容全部写入0
   {
    System.IO.FileStream writeFileStream = new FileStream(filePath
     System.IO.FileMode.Create
     System.IO.FileAccess.Write
     System.IO.FileShare.None512false);

    for(int i = 0 ;i< 10261;i++)
     tmp[i] = 0; 
    writeFileStream.Write(tmp010261);
    writeFileStream.Flush();
    writeFileStream.Close();
   }
   catch(System.IO.IOException)
   {

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-04-06 13:10  Ex16_02\
     文件         910  2007-07-11 11:34  Ex16_02.sln
     文件       28672  2007-07-11 11:34  Ex16_02.suo
     目录           0  2010-04-06 13:10  Ex16_02\bin\
     目录           0  2010-04-06 13:10  Ex16_02\bin\Debug\
     文件       24576  2007-07-11 11:34  Ex16_02\bin\Debug\Ex16_02.exe
     文件       34304  2007-07-11 11:34  Ex16_02\bin\Debug\Ex16_02.pdb
     文件        5658  2007-07-11 11:34  Ex16_02\bin\Debug\Ex16_02.vshost.exe
     文件        2595  2007-07-11 11:34  Ex16_02\bin\Debug\hb.txt
     文件        8482  2007-07-11 11:34  Ex16_02\Crypt.cs
     文件       14094  2007-07-11 11:34  Ex16_02\CustomCrypto.cs
     文件        3257  2007-07-11 11:34  Ex16_02\Ex16_02.csproj
     文件        5899  2007-07-11 11:34  Ex16_02\Form1.cs
     文件        5386  2007-07-11 11:34  Ex16_02\Form1.Designer.cs
     文件        6017  2007-07-11 11:34  Ex16_02\Form1.resx
     目录           0  2010-04-06 13:10  Ex16_02\obj\
     目录           0  2010-04-06 13:10  Ex16_02\obj\Debug\
     文件         842  2007-07-11 11:34  Ex16_02\obj\Debug\Ex16_02.csproj.GenerateResource.Cache
     文件       24576  2007-07-11 11:34  Ex16_02\obj\Debug\Ex16_02.exe
     文件         180  2007-07-11 11:34  Ex16_02\obj\Debug\Ex16_02.Form1.resources
     文件       34304  2007-07-11 11:34  Ex16_02\obj\Debug\Ex16_02.pdb
     文件         180  2007-07-11 11:34  Ex16_02\obj\Debug\Ex16_02.Properties.Resources.resources
     目录           0  2010-04-06 13:10  Ex16_02\obj\Debug\TempPE\
     文件         268  2007-07-11 11:34  Ex16_02\obj\Ex16_02.csproj.FileList.txt
     文件         466  2007-07-11 11:34  Ex16_02\Program.cs
     目录           0  2010-04-06 13:10  Ex16_02\Properties\
     文件        1162  2007-07-11 11:34  Ex16_02\Properties\AssemblyInfo.cs
     文件        2868  2007-07-11 11:34  Ex16_02\Properties\Resources.Designer.cs
     文件        5612  2007-07-11 11:34  Ex16_02\Properties\Resources.resx
     文件        1090  2007-07-11 11:34  Ex16_02\Properties\Settings.Designer.cs
     文件         249  2007-07-11 11:34  Ex16_02\Properties\Settings.settings
............此处省略0个文件信息

评论

共有 条评论