加密解密 c

2021-06-10 07:32:26 字數 677 閱讀 8404

#include "stdafx.h"

// 常量

#define c1 52845

#define c2 22719

cstring encrypt(cstring csdecode, word key) // 加密函式

csdecode=result; // 儲存結果

result.empty(); // 清除結果

for(i=0; i

return result;

}cstring decrypt(cstring csencode, word key) // 解密函式

csencode = result;

// 儲存中間結果

for(i=0; i// 依次對字串中各字元進行操作

return result;

}用法:

cstring text=_t("192.168.18.14");//需要加密的字串

word key=1314;//key

cstring jiami=encrypt(text,key);//加密

afxmessagebox(_t("密文:")+jiami);

cstring jiemi=decrypt(jiami,key);//解密

afxmessagebox(_t("原文:")+jiemi);

**:

C 加密解密

using system using system.text using system.globalization using system.security.cryptography class des 加密字串 public string encryptstring string sinputs...

c 加密解密

很多地方需要用到針對字串進行加密,傳輸到目的地後再進行解密,又或者針對比如密碼進行加密後儲存到資料庫,用的時候進行直接比較或者解密後比較.比如我寫了乙個加密演算法,然後將 123456789 進行加密,得到密文 k355jm9somny8jhhygoy1axkfm4 tnxwess7 由於我的加密演...

C 實現DES加密解密,AES加密解密

des演算法描述簡介 des是data encryption standard 資料加密標準 的縮寫。它是由ibm公司研製的一種加密演算法,美國國家標準局於1977年公布把它作為非機要部門使用的資料加密標準 它是乙個分組加密演算法,他以64位為分組對資料加密。同時des也是乙個對稱演算法 加密和解密...