⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch8_09.cs

📁 《c#技术内幕代码》
💻 CS
字号:
using System;
using System.IO ;
using System.Security;
using System.Security.Cryptography;

public class StoreCryptoStream : ICryptoStream
{
    static byte[] tag1 = {(byte)'[',(byte)'S',(byte)'a',(byte)'u' ,(byte)'d' ,(byte)'e',(byte)'s' ,(byte)']'};
    static byte[] tag2=  {(byte)'[',(byte)'S',(byte)'a',(byte)'u' ,(byte)'r' ,(byte)'c',(byte)'2' ,(byte)']'};

    FileStream fs;
    
    public StoreCryptoStream(FileStream fout)
    {
    	fs=fout ;
    }
    
    public virtual void CloseStream() {fs.Close();}
    public virtual void CloseStream(Object obj) {fs.Close();}
    public virtual void SetSink(ICryptoStream pstm) {}
    public virtual void  SetSource(CryptographicObject co) {}
    public virtual ICryptoStream  GetSink () {return null;}
    
    public virtual void Write(byte[] bin)
    {
        int len = bin.GetLength(0);
        Write(bin, 0, len);
    }
    
    public virtual void Write(byte[] bin, int start, int len )
    {
        fs.Write(bin,start,len);
    }

}


public class CH8_9
{
    private byte[] symKey ;
    private byte[] symIV ;

    private bool GenerateKey(string password)
    {
        try
	{
           int i;
           int len;
           char[] cp = password.ToCharArray();
           len = cp.GetLength(0) ;
           byte[] bt = new byte[len];
	   
           for(i=0 ; i<len ;i++)
           {
               bt[i] =(byte) cp[i];
           }

           symKey=new byte[8] ;
           symIV = new byte[8] ;

           SHA1_CSP sha = new SHA1_CSP() ;
           sha.Write(bt) ;
           sha.CloseStream() ;
           for(i=0 ; i<8 ; i++)
           {
               symKey[i] = sha.Hash[i] ;
           }
           for(i=8 ; i<16 ; i++)
           {
               symIV[i-8]= sha.Hash[i] ;
           }

           return true;
       }
       
       catch(Exception e)
       {
           Console.WriteLine("A Exception Occured in Generating Keys :"+e.ToString()) ;
           return false ;
       }
    }
    
    private void EncryptData(string infile, string outfile)
    {
        try
	{
            // Input and output files
            FileStream fin = new FileStream(infile, FileMode.Open , FileAccess.Read) ;
            FileStream fout = new FileStream(outfile , FileMode.OpenOrCreate , FileAccess.Write) ;
            fout.SetLength(0) ;
	    
            // Work space
            byte[] bin = new byte[4096] ;
	    
            long totlen = fin.Length ;
            long rdlen=0;
            int len ;

            // Setup the various encryption option objects	    
            SymmetricAlgorithm des = new DES_CSP();
            StoreCryptoStream scs = new StoreCryptoStream(fout); 
            SymmetricStreamEncryptor sse = des.CreateEncryptor(symKey, symIV);

            // Use Crypto-IP
            SHA1_CSP sha = new SHA1_CSP();

            sse.SetSink(sha);
            sha.SetSource(sse);
            sha.SetSink(scs);
            scs.SetSource(sha);

            // Loop through, reading in each block and encrypting it
	    // to the output file
            while (rdlen < totlen) 
	    {
                len = fin.Read(bin,0,4096);
                sse.Write(bin,0,len);
                rdlen = rdlen + len;
            }
	    
            // Free up the resources
            sse.CloseStream();
            fin.Close();
            fout.Close() ;
        }
        catch(Exception e)
        {
            Console.WriteLine("An exception occured while encrypting :"+e.ToString()) ;
        }
    }
    
    public static void Main(string[] args)
    {
       CH8_9 app = new CH8_9();
       app.GenerateKey(args[0]);
       app.EncryptData( args[1], args[2] );
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -