-
C#实现简单的文件加密与解密
在C#中实现文件加密和解密,通常会使用.NET框架中提供的加密类,比如`System.Security.Cryptography`命名空间下的类。这里,我将展示如何使用AES(高级加密标准)算法来加密和解密文件。
首先,你需要安装.NET环境,并创建一个C#控制台应用程序。
以下是一个简单的C#程序,用于加密和解密文件:
**注意**:
1. **密钥和IV**:在这个例子中,密钥(Key)和初始化向量(IV)被硬编码为字符串。在实际应用中,你应该以更安全的方式生成和存储这些值。密钥应该是随机生成的,并且长度应符合AES标准(16字节、24字节或32字节,分别对应AES-128、AES-192和AES-256)。IV不需要保密,但应该是唯一的(对于每个加密操作)。
2. **错误处理**:为了简化示例,我省略了错误处理代码。在生产环境中,你应该添加适当的异常处理逻辑。
3. **性能**:对于大文件,逐字节读取和写入可能不是最高效的方法。你可以考虑使用更大的缓冲区来提高性能。
4. **安全性**:确保你的应用程序在处理敏感数据时遵循最佳安全实践。例如,不要在日志中记录密钥或敏感数据,确保加密密钥安全地存储和分发,等等。
首先,你需要安装.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 oyourile.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);
}
}
}
}
}
}
}
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 oyourile.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
栏目列表
最新更新
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
Java使用poi生成word文档的简单实例
计算机二级考试MySQL常考点 8种MySQL数据库
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比