亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c# xml文件的加密方式

c#
小樊
97
2024-06-28 14:42:38
欄目: 編程語言

在C#中對XML文件進行加密可以使用對稱加密算法或非對稱加密算法。下面分別介紹兩種方式:

  1. 對稱加密算法: 對稱加密算法使用相同的密鑰進行文件的加密和解密。在C#中可以使用AES(Advanced Encryption Standard)對XML文件進行加密。以下是一個簡單的示例代碼:
using System;
using System.IO;
using System.Security.Cryptography;
using System.Xml;

public class XmlEncryption
{
    public static void EncryptXmlFile(string inputFile, string outputFile, string key)
    {
        using (Aes aes = Aes.Create())
        {
            aes.Key = Convert.FromBase64String(key);
            aes.IV = new byte[16];
            
            using (FileStream fsInput = new FileStream(inputFile, FileMode.Open))
            using (FileStream fsOutput = new FileStream(outputFile, FileMode.Create))
            using (CryptoStream cs = new CryptoStream(fsOutput, aes.CreateEncryptor(), CryptoStreamMode.Write))
            {
                fsInput.CopyTo(cs);
            }
        }
    }

    public static void DecryptXmlFile(string inputFile, string outputFile, string key)
    {
        using (Aes aes = Aes.Create())
        {
            aes.Key = Convert.FromBase64String(key);
            aes.IV = new byte[16];
            
            using (FileStream fsInput = new FileStream(inputFile, FileMode.Open))
            using (FileStream fsOutput = new FileStream(outputFile, FileMode.Create))
            using (CryptoStream cs = new CryptoStream(fsInput, aes.CreateDecryptor(), CryptoStreamMode.Read))
            {
                cs.CopyTo(fsOutput);
            }
        }
    }
}
  1. 非對稱加密算法: 非對稱加密算法使用公鑰和私鑰進行文件的加密和解密。在C#中可以使用RSA(Rivest-Shamir-Adleman)對XML文件進行加密。以下是一個簡單的示例代碼:
using System;
using System.IO;
using System.Security.Cryptography;
using System.Xml;

public class XmlEncryption
{
    public static void EncryptXmlFile(string inputFile, string outputFile, string publicKey)
    {
        using (RSA rsa = RSA.Create())
        {
            rsa.FromXmlString(publicKey);
            
            using (FileStream fsInput = new FileStream(inputFile, FileMode.Open))
            using (FileStream fsOutput = new FileStream(outputFile, FileMode.Create))
            {
                byte[] inputBytes = new byte[fsInput.Length];
                fsInput.Read(inputBytes, 0, inputBytes.Length);
                byte[] encryptedBytes = rsa.Encrypt(inputBytes, RSAEncryptionPadding.Pkcs1);
                fsOutput.Write(encryptedBytes, 0, encryptedBytes.Length);
            }
        }
    }

    public static void DecryptXmlFile(string inputFile, string outputFile, string privateKey)
    {
        using (RSA rsa = RSA.Create())
        {
            rsa.FromXmlString(privateKey);
            
            using (FileStream fsInput = new FileStream(inputFile, FileMode.Open))
            using (FileStream fsOutput = new FileStream(outputFile, FileMode.Create))
            {
                byte[] inputBytes = new byte[fsInput.Length];
                fsInput.Read(inputBytes, 0, inputBytes.Length);
                byte[] decryptedBytes = rsa.Decrypt(inputBytes, RSAEncryptionPadding.Pkcs1);
                fsOutput.Write(decryptedBytes, 0, decryptedBytes.Length);
            }
        }
    }
}

以上示例代碼只是演示了如何使用對稱加密算法和非對稱加密算法對XML文件進行加密和解密,實際應用中需要根據具體需求進行調整和完善。

0
富平县| 双流县| 陕西省| 临沂市| 延安市| 余庆县| 竹山县| 大冶市| 阿荣旗| 迭部县| 石门县| 分宜县| 曲周县| 天等县| 肥西县| 永宁县| 永新县| 景宁| 新建县| 八宿县| 临沭县| 广安市| 荥阳市| 红河县| 鞍山市| 安丘市| 富蕴县| 裕民县| 平罗县| 通道| 萨嘎县| 都兰县| 屯门区| 武定县| 尼玛县| 合川市| 宝兴县| 长沙县| 义乌市| 汉沽区| 田东县|