博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 简单字符串加解密(转载)
阅读量:5322 次
发布时间:2019-06-14

本文共 1381 字,大约阅读时间需要 4 分钟。

#include 
#include
#include
void EncodeString(LPCTSTR lpszText, LPTSTR *lpszReturn, LPCTSTR lpszKey){ int nTextLen = 0; char *cPos = NULL; char *pDest = NULL; if(!lpszReturn) // 加密 { nTextLen = ::_tcslen(lpszText); pDest = (LPTSTR)lpszText; } else // 解密 { // 查找自定的中止标记 cPos = (LPTSTR)lpszText; while(true) // 从这里可以看到,除非搜索到我们自定的中止标记,否则会一直搜索下去 { if(*cPos == '=') if(cPos[1] == '=') if(cPos[2] == '\0') break; cPos++; } if(!cPos) // 没有找到结束标记,也不是加密 return; nTextLen = cPos - lpszText; pDest = new char[nTextLen + 3]; // ==\0 } int nKeyLen = ::_tcslen(lpszKey); int i = 0; int k = 0; for(; i < nTextLen; i++) { pDest[i] = lpszText[i] ^ lpszKey[k]; k++; if(k >= nKeyLen) k = 0; } if(!cPos) memcpy(pDest + nTextLen, _T("==\0"), 3 * sizeof(TCHAR)); else { memset(pDest + nTextLen, _T('\0'), sizeof(TCHAR)); *lpszReturn = pDest; }} int main(int argc, char* argv[]){ char strText[] = "Hello world! I'm zimmerk. I'm a boy. What's your name?"; char *lpszDest = NULL; cout<
<

 

转载于:https://www.cnblogs.com/xuandi/p/5855669.html

你可能感兴趣的文章
freebsd 实现 tab 命令 补全 命令 提示
查看>>
struts1和struts2的区别
查看>>
函数之匿名函数
查看>>
shell习题第16题:查用户
查看>>
实验4 [bx]和loop的使用
查看>>
Redis常用命令
查看>>
2018.11.06 bzoj1040: [ZJOI2008]骑士(树形dp)
查看>>
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
centos系统python2.7更新到3.5
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>