| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
共有 631 人关注过本帖
标题:DES加密源代码问题
取消只看楼主 加入收藏
冷新月
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-5-1
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:0 
DES加密源代码问题
private static void EncryptData(String inName, String outName, byte[] desKey, byte[] desIV)
   {   
       //Create the file streams to handle the input and output files.
  
       FileStream fin = new FileStream(inName, FileMode.Open, FileAccess.Read);
       FileStream fout = new FileStream(outName, FileMode.OpenOrCreate, FileAccess.Write);
       fout.SetLength(0);
  
       //Create variables to help with read and write.
  
       byte[] bin = new byte[100]; //This is intermediate storage for the encryption.
  
       long rdlen = 0;              //This is the total number of bytes written.
  
       long totlen = fin.Length;    //This is the total length of the input file.
  
       int len;                     //This is the number of bytes to be written at a time.
  
  
       DES des = new DESCryptoServiceProvider();         
       CryptoStream encStream = new CryptoStream(fout, des.CreateEncryptor(desKey, desIV), CryptoStreamMode.Write);
  
       Console.WriteLine("Encrypting...");
  
       //Read from the input file, then encrypt and write to the output file.
  
       while(rdlen < totlen)
       {
           len = fin.Read(bin, 0, 100);
          encStream.Write(bin, 0, len);
           rdlen = rdlen + len;
           Console.WriteLine("{0} bytes processed", rdlen);
       }
  
       encStream.Close();  
       fout.Close();
       fin.Close();                  
   }
 这是一个DES加密的代码,我现在需要把“encStream.Write(bin, 0, len);”写成一个函数调用的形式,其调用的就是DES加密的源代码(即为DES加密的过程、转换、生成密码)
随便问下放过来解密的代码
2011-05-01 00:38
快速回复:DES加密源代码问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022929 second(s), 10 queries.
Copyright©2004-2025, BC-CN.NET, All Rights Reserved