文件名称:全局字符串转换局部变量存储防止暴露敏感字符串
文件大小:158KB
文件格式:RAR
更新时间:2015-07-03 08:34:49
字符串转换 防静态分析 防破解
输入要转换的全局字符串,例如:C:\\file\\我的文件.txt,输出: //C:\\file\\我的文件.txt #ifdef _UNICODE TCHAR szC:\\file\\我的文件.txt[] = { 'C', ':', '\\', 'f', 'i', 'l', 'e', '\\', 0x6211, 0x7684, 0x6587, 0x4EF6, '.', 't', 'x', 't', '\0' }; #else CHAR szC:\\file\\我的文件.txt[] = { 'C', ':', '\\', 'f', 'i', 'l', 'e', '\\', 0xCE, 0xD2, 0xB5, 0xC4, 0xCE, 0xC4, 0xBC, 0xFE, '.', 't', 'x', 't', '\0' }; #endif 如果字符串不包含中文,例如:file not found,输出 //file not found TCHAR szfile not found[] = { 'f', 'i', 'l', 'e', ' ', 'n', 'o', 't', ' ', 'f', 'o', 'u', 'n', 'd', '\0' }; 以上结果把变量名稍作修改即可使用
【文件预览】:
stdafx.cpp
res
----strtest.ico(21KB)
----strtest.rc2(363B)
stdafx.h
strtest.h
strtest.rc
strtest.vcproj
strtest.cpp
Str2Local.sln
strtestDlg.cpp
Str2Local.exe
resource.h
strtestDlg.h