我想用C#做一个文件加密的程序,可不知该怎么做,哪位高手进来指点一下.小弟在此先谢了!!!

解决方案 »

  1.   

    使用RSA技术加解密。。可以参考很多网上资料的
      

  2.   

    文件加密类,128位加密
    http://dev.csdn.net/develop/article/48/48745.shtm///<summary>文件加密类 使用DES加密文件流</summary>
    ///<param>desKey: DES的密钥;desIV: DES向量</param>
    http://dev.csdn.net/develop/article/74/74063.shtm
      

  3.   

    这是我在项目中实际用到的/*************************************************************************
    * Copyright(C) 2004-2005 ******** All Rights Reserved.
    ************************************************************************/using System;
    using System.IO;
    using System.Text;
    using System.Security.Cryptography;
    using System.Web;
    using System.Windows.Forms;
    /// <summary>
    /// Triple Data Encryption Standard algorithms implementations
    /// </summary>
    /// <Author>Yao</Author>
    /// <Date>2005/4/20</Date>public class CryptionData
    {
    // The length of Encryptionstring should be 8 byte and not be a weak key
    private string EncryptionString;// The length of initialization vector should be 8 byte
    private static Byte[] EncryptionIV = Encoding.Default.GetBytes("abcdefgh");/// <summary>
    /// Constructor
    /// </summary>
    public CryptionData()
    {
    }/// <summary>
    /// Constructor
    /// </summary>
    /// <param name="EncryptionString">SecureKey</param>
    public CryptionData(string EncryptionString)
    {
    this.EncryptionString = EncryptionString;
    }/// <summary>
    /// Encryption method for byte array
    /// </summary>
    /// <param name="SourceData">source data</param>
    /// <returns>byte array</returns>
    public byte[] EncryptionByteData(byte[] SourceData)
    {
    byte[] returnData = null;
    try
    {
    // Create DESCryptoServiceProvider object
    DESCryptoServiceProvider desProvider = new DESCryptoServiceProvider();// Set SecureKey and IV of desProvider
    byte[] byteKey = Encoding.Default.GetBytes(EncryptionString);
    desProvider.Key = byteKey;
    desProvider.IV = EncryptionIV;// A MemoryStream object
    MemoryStream ms = new MemoryStream();// Create Encryptor
    ICryptoTransform encrypto = desProvider.CreateEncryptor();// Create CryptoStream object
    CryptoStream cs = new CryptoStream(ms, encrypto, CryptoStreamMode.Write);// Encrypt SourceData
    cs.Write(SourceData,0,SourceData.Length);
    cs.FlushFinalBlock();// Get Encryption result
    returnData = ms.ToArray();
    }
    catch(Exception ex)
    {
    throw ex;
    }return returnData;}/// <summary>
    /// Decryption method for byte array
    /// </summary>
    /// <param name="SourceData">source data</param>
    /// <returns>byte array</returns>
    public byte[] DecryptionByteData(byte[] SourceData)
    {
    byte[] returnData = null;
    try
    {
    // Create DESCryptoServiceProvider object
    DESCryptoServiceProvider desProvider = new DESCryptoServiceProvider();// Set SecureKey and IV of desProvider
    byte[] byteKey = Encoding.Default.GetBytes(EncryptionString);
    desProvider.Key = byteKey;
    desProvider.IV = EncryptionIV;// A MemoryStream object
    MemoryStream ms = new MemoryStream();// Create Decryptor
    ICryptoTransform encrypto = desProvider.CreateDecryptor();// Create CryptoStream object
    CryptoStream cs = new CryptoStream(ms, encrypto, CryptoStreamMode.Write);// Decrypt SourceData
    cs.Write(SourceData, 0, SourceData.Length);
    cs.FlushFinalBlock();// Get Decryption result
    returnData = ms.ToArray();
    }
    catch(Exception ex)
    {
    throw ex;
    }
    return returnData;}/// <summary>
    /// Encryption method for string
    /// </summary>
    /// <param name="SourceData">source data</param>
    /// <returns>string</returns>
    public string EncryptionStringData(string SourceData)
    {
    try
    {
    // Convert source data from string to byte array
    byte[] SourData = Encoding.Default.GetBytes(SourceData);// Encrypt byte array
    byte[] retData = EncryptionByteData(SourData);// Convert encryption result from byte array to Base64String
    return Convert.ToBase64String(retData, 0, retData.Length);
    }
    catch(Exception ex)
    {
    throw ex;
    }
    }/// <summary>
    /// Decryption method for string
    /// </summary>
    /// <param name="SourceData">source data</param>
    /// <returns>string</returns>
    public string DecryptionStringdata(string SourceData)
    {
    try
    {
    // Convert source data from Base64String to byte array
    byte[] SourData = Convert.FromBase64String(SourceData);// Decrypt byte array
    byte[] retData = DecryptionByteData(SourData);// Convert Decryption result from byte array to string
    return Encoding.Default.GetString(retData, 0, retData.Length);
    }
    catch(Exception ex)
    {
    throw ex;
    }
    }
    }我写的这个类,加密字符串和字节数组的。
    这是最初开发的一个类,加密字节数组这个方法是用来加密小的图像文件的。把图像读到字节数组中,就可以解密解密了。后来改造过一次,加密字符串用的是TripleDES,加密图像,因为速度的关系采用DES算法的。