.NET开发

本类阅读TOP10

·NHibernate快速指南(翻译)
·vs.net 2005中文版下载地址收藏
·【小技巧】一个判断session是否过期的小技巧
·VB/ASP 调用 SQL Server 的存储过程
·?dos下编译.net程序找不到csc.exe文件
·通过Web Services上传和下载文件
·学习笔记(补)《.NET框架程序设计(修订版)》--目录
·VB.NET实现DirectDraw9 (2) 动画
·VB.NET实现DirectDraw9 (1) 托管的DDraw
·建站框架规范书之——文件命名

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
一个可以用来加密/解密的类(原创)

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

可以用来加/解密数据库用户、密码等

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

namespace Common
{
 /// <summary>
 /// SecurityService 的摘要说明。
 /// </summary>
 public class SecurityService
 {
   static protected Byte[] byteKey  = {125, 14, 45, 67, 112, 79, 77, 99, 37, 104, 13, 9, 118, 51, 87, 108};
   static protected Byte[] byteIV  = {86, 19, 79, 15, 72, 58, 117, 45};
   static public string SymmetricEncrypt(String sPlainText)
   {
   Byte[] bytePlaintext;
   MemoryStream EncryptedStream;
   ICryptoTransform Encryptor;
      CryptoStream TheCryptoStream;
      if(sPlainText=="")  return "";
   bytePlaintext = Encoding.ASCII.GetBytes(sPlainText);
   EncryptedStream = new MemoryStream(sPlainText.Length);
   Encryptor = GetEncryptor();
   TheCryptoStream = new CryptoStream(EncryptedStream, Encryptor, CryptoStreamMode.Write);
   TheCryptoStream.Write(bytePlaintext, 0, bytePlaintext.Length);
   TheCryptoStream.FlushFinalBlock();
   TheCryptoStream.Close();

   return Convert.ToBase64String(EncryptedStream.ToArray());

  }//End Function

  static public string SymmetricDecrypt(String sEncryptedText)
  {
   Byte[] byteEncrypted;
   MemoryStream PlaintextStream;
   ICryptoTransform Decryptor;
   CryptoStream TheCryptoStream;

   if (sEncryptedText == "")  return "";

   byteEncrypted = Convert.FromBase64String(sEncryptedText.Trim());
   PlaintextStream = new MemoryStream(sEncryptedText.Length);
   Decryptor = GetDecryptor();
   TheCryptoStream = new CryptoStream(PlaintextStream, Decryptor, CryptoStreamMode.Write);

   TheCryptoStream.Write(byteEncrypted, 0, byteEncrypted.Length);
   TheCryptoStream.FlushFinalBlock();
   TheCryptoStream.Close();

   return Encoding.ASCII.GetString(PlaintextStream.ToArray());

  }//End Function

  static private ICryptoTransform GetEncryptor()
  {
     RC2CryptoServiceProvider CryptoProvider = new RC2CryptoServiceProvider();
              CryptoProvider.Mode = CipherMode.CBC;
     return CryptoProvider.CreateEncryptor(byteKey, byteIV);

   }//End Function

  static private ICryptoTransform  GetDecryptor()
  {
   RC2CryptoServiceProvider CryptoProvider = new RC2CryptoServiceProvider();
    CryptoProvider.Mode = CipherMode.CBC;
             return CryptoProvider.CreateDecryptor(byteKey, byteIV);

   }//End Function
 }
}




相关文章

相关软件