Skip to content

C++ string obfuscator tool

License

Notifications You must be signed in to change notification settings

Watch-Later/strenc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

strenc

C++源码级字符串混淆库/工具

使用方法

  1. 在独立文件中声明需要混淆的字符串常量,如:
STR_NAME
my name is jeff
STR_PASSWORD
my password is 123456

将上述内容保存到sample.strenc文件中。

  1. 使用strenctool工具生成sample.h文件:
strenctool sample.strenc
  1. 引用字符串
#include "sample.h"

printf("%s", STR_NAME);     // my name is jeff
printf("%s", STR_PASSWORD); // my password is 123456

About

C++ string obfuscator tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages