熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

DOTNET的加密技術應用

2022-06-13   來源: .NET編程 

  using System;
using SystemText;
using SystemSecurity;
using SystemSecurityCryptography;
using SystemIO;
namespace EncryptClasses
{
 /// <summary>
 /// 此處定義的是DES加密為了便於今後的管理和維護
 /// 請不要隨便改動密碼或者改變了密碼後請一定要
 /// 牢記先前的密碼否則將會照成不可預料的損失
 /// </summary>
 public class DESEncrypt
 {
  #region member fields
  private string iv=;
  private string key=;
  private Encoding encoding=new UnicodeEncoding();
  private DES des;
  #endregion
  /// <summary>
  /// 構造函數
  /// </summary>
  public DESEncrypt()
  {
   des=new DESCryptoServiceProvider();
  }
  #region propertys
  /// <summary>
  /// 設置加密密鑰
  /// </summary>
  public string EncryptKey
  {
   get{return thiskey;}
   set
   {
      thiskey=value;
   }
  }
  /// <summary>
  /// 要加密字符的編碼模式
  /// </summary>
  public Encoding EncodingMode
  {
   get{return thisencoding;}
   set{thisencoding=value;}
  }
  #endregion
  #region methods
  /// <summary>
  /// 加密字符串並返回加密後的結果
  /// </summary>
  /// <param name=str></param>
  /// <returns></returns>
  public string EncryptString(string str)
  {
   byte[] ivb=EncodingASCIIGetBytes(thisiv);
   byte[] keyb=EncodingASCIIGetBytes(thisEncryptKey);//得到加密密鑰
   byte[] toEncrypt=thisEncodingModeGetBytes(str);//得到要加密的內容
   byte[] encrypted;
   ICryptoTransform encryptor=desCreateEncryptor(keybivb);
   MemoryStream msEncrypt=new MemoryStream();
   CryptoStream csEncrypt=new CryptoStream(msEncryptencryptorCryptoStreamModeWrite);
   csEncryptWrite(toEncrypttoEncryptLength);
   csEncryptFlushFinalBlock();
   encrypted=msEncryptToArray();
   csEncryptClose();
   msEncryptClose();
   return thisEncodingModeGetString(encrypted);
  }
  /// <summary>
  /// 加密指定的文件如果成功返回True否則false
  /// </summary>
  /// <param name=filePath>要加密的文件路徑</param>
  /// <param name=outPath>加密後的文件輸出路徑</param>
  public void EncryptFile(string filePathstring outPath)
  {
   bool isExist=FileExists(filePath);
   if(isExist)//如果存在
   {
    byte[] ivb=EncodingASCIIGetBytes(thisiv);
    byte[] keyb=EncodingASCIIGetBytes(thisEncryptKey);
    //得到要加密文件的字節流
    FileStream fin=new FileStream(filePathFileModeOpenFileAccessRead);
    StreamReader reader=new StreamReader(finthisEncodingMode);
    string dataStr=readerReadToEnd();
    byte[] toEncrypt=thisEncodingModeGetBytes(dataStr);
    finClose();

  FileStream fout=new FileStream(outPathFileModeCreateFileAccessWrite);
    ICryptoTransform encryptor=desCreateEncryptor(keybivb);
    CryptoStream csEncrypt=new CryptoStream(foutencryptorCryptoStreamModeWrite);
    try
    {
     //加密得到的文件字節流
     csEncryptWrite(toEncrypttoEncryptLength);
     csEncryptFlushFinalBlock();
    }
    catch(Exception err)
    {
     throw new ApplicationException(errMessage);
    }
    finally
    {
     try
     {
      foutClose();
      csEncryptClose();
     }
     catch
     {
      ;
     }
    }
   }
   else
   {
    throw new FileNotFoundException(沒有找到指定的文件);
   }
  }
  /// <summary>
  /// 文件加密函數的重載版本如果不指定輸出路徑
  /// 那麼原來的文件將被加密後的文件覆蓋
  /// </summary>
  /// <param name=filePath></param>
  public void EncryptFile(string filePath)
  {
   thisEncryptFile(filePathfilePath);
  }

  /// <summary>
  /// 解密給定的字符串
  /// </summary>
  /// <param name=str>要解密的字符</param>
  /// <returns></returns>
  public string DecryptString(string str)
  {
   byte[] ivb=EncodingASCIIGetBytes(thisiv);
   byte[] keyb=EncodingASCIIGetBytes(thisEncryptKey);
   byte[] toDecrypt=thisEncodingModeGetBytes(str);
   byte[] deCrypted=new byte[toDecryptLength];
   ICryptoTransform deCryptor=desCreateDecryptor(keybivb);
   MemoryStream msDecrypt=new MemoryStream(toDecrypt);
   CryptoStream csDecrypt=new CryptoStream(msDecryptdeCryptorCryptoStreamModeRead);
   try
   {
    csDecryptRead(deCrypteddeCryptedLength);
   }
   catch(Exception err)
   {
    throw new ApplicationException(errMessage);
   }
   finally
   {
    try
    {
     msDecryptClose();
     csDecryptClose();
    }
    catch{;}
   }
   return thisEncodingModeGetString(deCrypted);
  }
  /// <summary>
  /// 解密指定的文件
  /// </summary>
  /// <param name=filePath>要解密的文件路徑</param>
  /// <param name=outPath>解密後的文件輸出路徑</param>
  public void DecryptFile(string filePathstring outPath)
  {
   bool isExist=FileExists(filePath);
   if(isExist)//如果存在
   {
    byte[] ivb=EncodingASCIIGetBytes(thisiv);
    byte[] keyb=EncodingASCIIGetBytes(thisEncryptKey);
    FileInfo file=new FileInfo(filePath);
    byte[] deCrypted=new byte[fileLength];
    //得到要解密文件的字節流
    FileStream fin=new FileStream(filePathFileModeOpenFileAccessRead);
    //解密文件
    try
    {
     ICryptoTransform decryptor=desCreateDecryptor(keybivb);
     CryptoStream csDecrypt=new CryptoStream(findecryptorCryptoStreamModeRead);
     csDecryptRead(deCrypteddeCryptedLength);
    }
    catch(Exception err)
    {
     throw new ApplicationException(errMessage);
    }
    finally
    {
     try
     {
      finClose();
     }
     catch{;}
    }
    FileStream fout=new FileStream(outPathFileModeCreateFileAccessWrite);
    foutWrite(deCrypteddeCryptedLength);
    foutClose();
   }
   else
   {
    throw new FileNotFoundException(指定的解密文件沒有找到);
   }
  }
  /// <summary>
  /// 解密文件的重載版本如果沒有給出解密後文件的輸出路徑
  /// 則解密後的文件將覆蓋先前的文件
  /// </summary>
  /// <param name=filePath></param>
  public void DecryptFile(string filePath)
  {
   thisDecryptFile(filePathfilePath);
  }
  #endregion
 }
 /// <summary>
 /// MD加密類注意經MD加密過的信息是不能轉換回原始數據的
 /// 請不要在用戶敏感的信息中使用此加密技術比如用戶的密碼
 /// 請盡量使用對稱加密
 /// </summary>
 public class MDEncrypt
 {
  private MD md;
  public MDEncrypt()
  {
   md=new MDCryptoServiceProvider();
  }
  /// <summary>
  /// 從字符串中獲取散列值
  /// </summary>
  /// <param name=str>要計算散列值的字符串</param>
  /// <returns></returns>
  public string GetMDFromString(string str)
  {
   byte[] toCompute=EncodingUnicodeGetBytes(str);
   byte[] hashed=mdComputeHash(toComputetoComputeLength);
   return EncodingASCIIGetString(hashed);
  }
  /// <summary>
  /// 根據文件來計算散列值
  /// </summary>
  /// <param name=filePath>要計算散列值的文件路徑</param>
  /// <returns></returns>
  public string GetMDFromFile(string filePath)
  {
   bool isExist=FileExists(filePath);
   if(isExist)//如果文件存在
   {
    FileStream stream=new FileStream(filePathFileModeOpenFileAccessRead);
    StreamReader reader=new StreamReader(streamEncodingUnicode);
    string str=readerReadToEnd();
    byte[] toHash=EncodingUnicodeGetBytes(str);
    byte[] hashed=mdComputeHash(toHashtoHashLength);
    streamClose();
    return EncodingASCIIGetString(hashed);
   }
   else//文件不存在
   {
    throw new FileNotFoundException(指定的文件沒有找到);
   }
  }
 }
 /// <summary>
 /// 用於數字簽名的hash類
 /// </summary>
 public class MACTripleDESEncrypt
 {
  private MACTripleDES mact;
  private string __key=ksnch;
  private byte[] __data=null;
  public MACTripleDESEncrypt()
  {
   mact=new MACTripleDES();
  }
  /// <summary>
  /// 獲取或設置用於數字簽名的密鑰
  /// </summary>
  public string Key
  {
   get{return this__key;}
   set
   {
    int keyLength=valueLength;
    int[] keyAllowLengths=new int[]{};
    bool isRight=false;
    foreach(int i in keyAllowLengths)
    {
     if(keyLength==keyAllowLengths[i])
     {
      isRight=true;
      break;
     }
    }
    if(!isRight)
     throw new ApplicationException(用於數字簽名的密鑰長度必須是值之一);
    else
     this__key=value;
   }
  }
  /// <summary>
  /// 獲取或設置用於數字簽名的用戶數據
  /// </summary>
  public byte[] Data
  {
   get{return this__data;}
   set{this__data=value;}
  }
  /// <summary>
  /// 得到簽名後的hash值
  /// </summary>
  /// <returns></returns>
  public string GetHashValue()
  {
   if(thisData==null)
    throw new NotSetSpecialPropertyException(沒有設置要進行數字簽名的用戶+
                                         數據(property:Data));
   byte[] key=EncodingASCIIGetBytes(thisKey);
   thismactKey=key;
   byte[] hash_b=thismactComputeHash(thismactComputeHash(thisData));
   return EncodingASCIIGetString(hash_b);
  }
 }
}


From:http://tw.wingwit.com/Article/program/net/201311/11612.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.