首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

在C#中自动加密文件?

在C#中,可以使用AES(高级加密标准)算法对文件进行加密。以下是一个简单的示例,说明如何使用AES加密算法对文件进行加密和解密。

首先,需要添加以下命名空间:

代码语言:csharp
复制
using System;
using System.IO;
using System.Security.Cryptography;

接下来,创建一个名为EncryptFile的方法,该方法将接受一个文件路径和一个密钥作为参数,并返回加密后的文件路径:

代码语言:csharp
复制
public static string EncryptFile(string inputFile, string key)
{
    byte[] keyBytes = Convert.FromBase64String(key);
    byte[] ivBytes = new byte[16];
    byte[] buffer = new byte[1024];
    int readBytes;

    using (var aes = Aes.Create())
    using (var inputStream = File.OpenRead(inputFile))
    using (var outputStream = File.OpenWrite($"{inputFile}.encrypted"))
    using (var encryptor = aes.CreateEncryptor(keyBytes, ivBytes))
    using (var cryptoStream = new CryptoStream(outputStream, encryptor, CryptoStreamMode.Write))
    {
        while ((readBytes = inputStream.Read(buffer, 0, buffer.Length)) > 0)
        {
            cryptoStream.Write(buffer, 0, readBytes);
        }
    }

    return $"{inputFile}.encrypted";
}

接下来,创建一个名为DecryptFile的方法,该方法将接受一个加密文件路径和一个密钥作为参数,并返回解密后的文件路径:

代码语言:csharp
复制
public static string DecryptFile(string inputFile, string key)
{
    byte[] keyBytes = Convert.FromBase64String(key);
    byte[] ivBytes = new byte[16];
    byte[] buffer = new byte[1024];
    int readBytes;

    using (var aes = Aes.Create())
    using (var inputStream = File.OpenRead(inputFile))
    using (var outputStream = File.OpenWrite($"{inputFile}.decrypted"))
    using (var decryptor = aes.CreateDecryptor(keyBytes, ivBytes))
    using (var cryptoStream = new CryptoStream(inputStream, decryptor, CryptoStreamMode.Read))
    {
        while ((readBytes = cryptoStream.Read(buffer, 0, buffer.Length)) > 0)
        {
            outputStream.Write(buffer, 0, readBytes);
        }
    }

    return $"{inputFile}.decrypted";
}

现在,您可以使用EncryptFileDecryptFile方法对文件进行加密和解密。例如:

代码语言:csharp
复制
string inputFile = "example.txt";
string key = "your-base64-encoded-key";

string encryptedFile = EncryptFile(inputFile, key);
string decryptedFile = DecryptFile(encryptedFile, key);

请注意,这个示例使用了一个固定的IV(初始化向量),这在实际应用中是不安全的。在实际应用中,应该使用随机生成的IV,并将其与加密数据一起存储。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券