c# stream的加密解密方法

avatar
作者
筋斗云
阅读量:0

在C#中,可以使用System.Security.Cryptography命名空间下的类来实现流的加密解密操作。下面是一个简单的示例代码:

using System; using System.IO; using System.Security.Cryptography;  public class StreamEncryption {     public static void EncryptStream(Stream inputStream, Stream outputStream, string key)     {         using (Aes aesAlg = Aes.Create())         {             aesAlg.Key = Encoding.UTF8.GetBytes(key);             aesAlg.IV = new byte[16]; // 16 bytes IV for AES              using (CryptoStream cryptoStream = new CryptoStream(outputStream, aesAlg.CreateEncryptor(), CryptoStreamMode.Write))             {                 inputStream.CopyTo(cryptoStream);             }         }     }      public static void DecryptStream(Stream inputStream, Stream outputStream, string key)     {         using (Aes aesAlg = Aes.Create())         {             aesAlg.Key = Encoding.UTF8.GetBytes(key);             aesAlg.IV = new byte[16]; // 16 bytes IV for AES              using (CryptoStream cryptoStream = new CryptoStream(inputStream, aesAlg.CreateDecryptor(), CryptoStreamMode.Read))             {                 cryptoStream.CopyTo(outputStream);             }         }     } } 

在上面的示例中,EncryptStream方法将输入流使用AES算法加密后写入输出流,DecryptStream方法将输入流使用AES算法解密后写入输出流。在使用时,可以将需要加密的数据流和加密后的数据流传入这两个方法进行加密和解密操作。

需要注意的是,对称加密算法需要提供密钥(key)和初始化向量(IV),这两者都需要保密。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!