在C#中,可以使用AES(高级加密标准)算法对文件进行加密。以下是一个简单的示例,说明如何使用AES加密算法对文件进行加密和解密。
首先,需要添加以下命名空间:
using System;
using System.IO;
using System.Security.Cryptography;
接下来,创建一个名为EncryptFile
的方法,该方法将接受一个文件路径和一个密钥作为参数,并返回加密后的文件路径:
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
的方法,该方法将接受一个加密文件路径和一个密钥作为参数,并返回解密后的文件路径:
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";
}
现在,您可以使用EncryptFile
和DecryptFile
方法对文件进行加密和解密。例如:
string inputFile = "example.txt";
string key = "your-base64-encoded-key";
string encryptedFile = EncryptFile(inputFile, key);
string decryptedFile = DecryptFile(encryptedFile, key);
请注意,这个示例使用了一个固定的IV(初始化向量),这在实际应用中是不安全的。在实际应用中,应该使用随机生成的IV,并将其与加密数据一起存储。
领取专属 10元无门槛券
手把手带您无忧上云