首 页 ASP ASP.NET PHP JSP Ajax DIV+CSS JavaScript XML C#
MySQL MSSQL Access Oracle Linux Server 电脑技巧 网络安全 建站经验 其它

C#可逆加密--Rijndael算法

整理日期:2007年08月12日 【字体:

CS文件:

using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;

namespace DataCrypto
{
  /// <summary>
  /// DataCrypto 的摘要说明
  /// </summary>
  public class SymmetricMethod
  {

    private SymmetricAlgorithm mobjCryptoService;
    private string Key;
    /// <summary>
    /// 对称加密类的构造函数
    /// </summary>
    public SymmetricMethod()
    {
      mobjCryptoService = new RijndaelManaged();
      Key = "lijianfufaicaixiaoke";
    }

伊图教程网[www.etoow.com]
http://www.etoow.com/html/2007-08/1186931114.html
    /// <summary>
Tags:
C#可逆加密--Rijndael算法
'http://www.etoow.com/html/2007-08/1186931114.html
1
 
2
信息搜索
  
联系我们关于本站广告服务设为首页 收藏本站友情链接网站地图
Copyright © Etoow.com Inc. All Rights Reserved