├── .github └── FUNDING.yml ├── .gitignore ├── CTXorDLL.sln ├── CTXorDLL ├── .editorconfig ├── CTXorDLL.cpp ├── CTXorDLL.vcxproj ├── CTXorDLL.vcxproj.filters ├── CTXorDLL.vcxproj.user ├── PolyHook.hpp ├── ReadMe.txt ├── regexReplace.h ├── xor.hpp └── xorgen.h ├── Capstone ├── include │ ├── arm.h │ ├── arm64.h │ ├── capstone.h │ ├── mips.h │ ├── platform.h │ ├── ppc.h │ ├── sparc.h │ ├── systemz.h │ ├── x86.h │ └── xcore.h └── msvc_vs2017 │ ├── x64 │ ├── Debug │ │ ├── capstone.dll │ │ └── capstone.lib │ └── Release │ │ ├── capstone.dll │ │ └── capstone.lib │ └── x86 │ ├── Debug │ ├── capstone.dll │ └── capstone.lib │ └── Release │ ├── capstone.dll │ └── capstone.lib ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [stevemk14ebr] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/.gitignore -------------------------------------------------------------------------------- /CTXorDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL.sln -------------------------------------------------------------------------------- /CTXorDLL/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 -------------------------------------------------------------------------------- /CTXorDLL/CTXorDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/CTXorDLL.cpp -------------------------------------------------------------------------------- /CTXorDLL/CTXorDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/CTXorDLL.vcxproj -------------------------------------------------------------------------------- /CTXorDLL/CTXorDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/CTXorDLL.vcxproj.filters -------------------------------------------------------------------------------- /CTXorDLL/CTXorDLL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/CTXorDLL.vcxproj.user -------------------------------------------------------------------------------- /CTXorDLL/PolyHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/PolyHook.hpp -------------------------------------------------------------------------------- /CTXorDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/ReadMe.txt -------------------------------------------------------------------------------- /CTXorDLL/regexReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/regexReplace.h -------------------------------------------------------------------------------- /CTXorDLL/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/xor.hpp -------------------------------------------------------------------------------- /CTXorDLL/xorgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/CTXorDLL/xorgen.h -------------------------------------------------------------------------------- /Capstone/include/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/arm.h -------------------------------------------------------------------------------- /Capstone/include/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/arm64.h -------------------------------------------------------------------------------- /Capstone/include/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/capstone.h -------------------------------------------------------------------------------- /Capstone/include/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/mips.h -------------------------------------------------------------------------------- /Capstone/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/platform.h -------------------------------------------------------------------------------- /Capstone/include/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/ppc.h -------------------------------------------------------------------------------- /Capstone/include/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/sparc.h -------------------------------------------------------------------------------- /Capstone/include/systemz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/systemz.h -------------------------------------------------------------------------------- /Capstone/include/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/x86.h -------------------------------------------------------------------------------- /Capstone/include/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/include/xcore.h -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x64/Debug/capstone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x64/Debug/capstone.dll -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x64/Debug/capstone.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x64/Debug/capstone.lib -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x64/Release/capstone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x64/Release/capstone.dll -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x64/Release/capstone.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x64/Release/capstone.lib -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x86/Debug/capstone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x86/Debug/capstone.dll -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x86/Debug/capstone.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x86/Debug/capstone.lib -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x86/Release/capstone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x86/Release/capstone.dll -------------------------------------------------------------------------------- /Capstone/msvc_vs2017/x86/Release/capstone.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/Capstone/msvc_vs2017/x86/Release/capstone.lib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemk14ebr/CompileTime-String-Encryption/HEAD/README.md --------------------------------------------------------------------------------