ORM對映框架總結 加密處理

2021-09-05 22:24:19 字數 1593 閱讀 2967

1.md5 加密處理

*2* 日期:2009-3-1534

* 功能:md5加密及驗證5* 

*/6using

system;

7using

system.collections.generic;

8using

system.linq;

9using

system.text;

10using

system.security.cryptography;

11using

system.io;

1213

namespace

commondata.encrypt

1433

return

result;34}

35else

364041}

4243

44///

45///

加密驗證

46///

47///

輸入需要驗證的內容

48///

加密比較的物件

49///

50public

static

bool

getcontentcheck(

string

content, 

string

data)

5159

else

6063}64

else

6569}70

}71}72

這個類提供了兩個方法。上面的那個是加密,下面的驗證。因為md5加密時不可逆的過程,因此在驗證的時候需要先加密在比較

2.xor 加密

*2* 日期:2009-3-1534

* 功能:xor加密5* 

*/6using

system;

7using

system.collections.generic;

8using

system.linq;

9using

system.text;

10using

system.security.cryptography;

1112

namespace

commondata.encrypt

1333}34

return

(new

unicodeencoding()).getstring(bcontent).trimend('\0

');35}

3637

38///

39///

xor 解密

40///

41///

解密的文字

42///

解密文字密匙

43///

44public

static

string

decryptstring(

string

content, 

string

key)

4548}49

}50

這個加密演算法是可逆的,不過在解密的時候需要金鑰處理.這個加密不難,演算法也比較簡單

ORM對映框架總結 資料操作 五

1.資料庫載入驅動和操作介面 idbprovider 2 3 2009 4 224 5 6 資料庫操作載入驅動介面,7 提供了資料庫操作的各種命令 8 9using system 10using system.collections.generic 11using system.linq 12usi...

ORM(關係物件對映)框架之物件導向

1.提取共性 2.分類 3.模板 約束 4.當一類函式公用同樣引數時候,可以轉變成類進行 分類 3.物件導向 資料和邏輯 屬性和行為 組合在一起 函式程式設計 資料和邏輯分離 1 特殊方法 2class foo 3def init self,name 4 self.name name56 7def ...

ODB 基於c 的ORM對映框架嘗試 使用

摘要 2 使用 首先,需要定義乙個物件,用來和資料庫字段對應 cce lang cpp ifndef volume h define volume h include include pragma db object cl 2 使用 首先,需要定義乙個物件,用來和資料庫字段對應 cce lang c...