呼叫類庫函庫的簡單加密方法

2021-03-31 08:56:29 字數 1299 閱讀 8551

asp.***自帶了乙個md5和sha1加密類庫!

下面是呼叫此類庫的兩種加密方法:

********************=

public string ge***5(string strdata)

else if (strtype.toupper() == "md5")

return strcrydata;}

public string getsha256(string strdata)

{//使用sha256加密演算法:

system.security.cryptography.sha256 sha256 = new system.security.cryptography.sha256managed();

byte sha256bytes = system.text.encoding.default.getbytes(strdata);

byte crystring = sha256.***putehash(sha256bytes);

string sha256str = string.empty;

for (int i=0;i

public string getsha384(string strdata)

{//使用sha384加密演算法:

system.security.cryptography.sha384 sha384 = new system.security.cryptography.sha384managed();

byte sha384bytes = system.text.encoding.default.getbytes(strdata);

byte crystring = sha384.***putehash(sha384bytes);

string sha384str = string.empty;

for (int i=0;i

public string getsha512(string strdata)

{//使用sha512加密演算法:

system.security.cryptography.sha512 sha512 = new system.security.cryptography.sha512managed();

byte sha512bytes = system.text.encoding.default.getbytes(strdata);

byte crystring = sha512.***putehash(sha512bytes);

string sha512str = string.empty;

for (int i=0;i

類庫呼叫窗體方法 委託

大鳥掠過。首先,新建乙個專案,新增乙個窗體專案formmain,再新增乙個類庫 common 在common中新增乙個類del 如下 namespace deltest 在common中新增另乙個類 common using system using system.collections.gener...

PHP呼叫C 開發的dll類庫方法

這篇文章主要介紹了php呼叫c 開發的dll類庫方法,包含乙個完整的詳細的dll製作步驟和php呼叫方法,需要的朋友可以參考下 有的時候,我們需要在php中利用到其他語言編寫的dll類庫,如c 編寫的dll,方法就是利用php new com方法來呼叫,在呼叫之前先要把dll庫註冊並把程式集放入到全...

動態庫與靜態庫呼叫方法

1.引用靜態庫 1.包含標頭檔案 注意 如果.件不在當前工程目錄下,則需要指定.件路徑.兩種方法 方法a a.右鍵專案 屬性 c c 常規 附加包含目錄 編輯 新增資料夾路徑 精確到最後一級目錄 b.include h 方法b a.include 檔案路徑名 h 2.新增依賴項 指定使用哪個 lib...