标题: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



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-338491-1-1.html




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

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.043994 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved