VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > c#编程 >
  • C#实现简单的文件加密与解密

在C#中实现文件加密和解密,通常会使用.NET框架中提供的加密类,比如`System.Security.Cryptography`命名空间下的类。这里,我将展示如何使用AES(高级加密标准)算法来加密和解密文件。
 
首先,你需要安装.NET环境,并创建一个C#控制台应用程序。
 
以下是一个简单的C#程序,用于加密和解密文件:
 
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
 
class Program
{
    private static readonly byte[] Key = Encoding.UTF8.GetBytes("1234567890123456"); // AES key, 16 bytes for AES-128
    private static readonly byte[] IV = Encoding.UTF8.GetBytes("1234567890123456"); // Initialization vector, 16 bytes for AES
 
    static void Main(string[] args)
    {
        string sourceFile = @"C:path oyour ile.txt";
        string encryptedFile = @"C:path oyourencryptedFile.txt";
        string decryptedFile = @"C:path oyourdecryptedFile.txt";
 
        // Encrypt the file
        EncryptFile(sourceFile, encryptedFile);
 
        // Decrypt the file
        DecryptFile(encryptedFile, decryptedFile);
 
        Console.WriteLine("Encryption and Decryption completed.");
    }
 
    public static void EncryptFile(string inputFile, string outputFile)
    {
        using (Aes aesAlg = Aes.Create())
        {
            aesAlg.Key = Key;
            aesAlg.IV = IV;
 
            ICryptoTransform encryptor = aesAlg.CreateEncryptor(aesAlg.Key, aesAlg.IV);
 
            using (FileStream fsCrypt = new FileStream(outputFile, FileMode.Create))
            {
                using (CryptoStream csEncrypt = new CryptoStream(fsCrypt, encryptor, CryptoStreamMode.Write))
                {
                    using (FileStream fsIn = new FileStream(inputFile, FileMode.Open))
                    {
                        int data;
                        while ((data = fsIn.ReadByte()) != -1)
                        {
                            csEncrypt.WriteByte((byte)data);
                        }
                    }
                }
            }
        }
    }
 
    public static void DecryptFile(string inputFile, string outputFile)
    {
        using (Aes aesAlg = Aes.Create())
        {
            aesAlg.Key = Key;
            aesAlg.IV = IV;
 
            ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);
 
            using (FileStream fsCrypt = new FileStream(inputFile, FileMode.Open))
            {
                using (CryptoStream csDecrypt = new CryptoStream(fsCrypt, decryptor, CryptoStreamMode.Read))
                {
                    using (FileStream fsOut = new FileStream(outputFile, FileMode.Create))
                    {
                        int data;
                        while ((data = csDecrypt.ReadByte()) != -1)
                        {
                            fsOut.WriteByte((byte)data);
                        }
                    }
                }
            }
        }
    }
}
 
**注意**:
 
1. **密钥和IV**:在这个例子中,密钥(Key)和初始化向量(IV)被硬编码为字符串。在实际应用中,你应该以更安全的方式生成和存储这些值。密钥应该是随机生成的,并且长度应符合AES标准(16字节、24字节或32字节,分别对应AES-128、AES-192和AES-256)。IV不需要保密,但应该是唯一的(对于每个加密操作)。
 
2. **错误处理**:为了简化示例,我省略了错误处理代码。在生产环境中,你应该添加适当的异常处理逻辑。
 
3. **性能**:对于大文件,逐字节读取和写入可能不是最高效的方法。你可以考虑使用更大的缓冲区来提高性能。
 
4. **安全性**:确保你的应用程序在处理敏感数据时遵循最佳安全实践。例如,不要在日志中记录密钥或敏感数据,确保加密密钥安全地存储和分发,等等。

最后,如果你对python语言还有任何疑问或者需要进一步的帮助,请访问https://www.xin3721.com 本站原创,转载请注明出处:
https://www.xin3721.com/ArticlecSharp/c50091.html


相关教程