gpt4 book ai didi

c++ - 如何制作 C 宏预构建预处理器?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:34:09 26 4
gpt4 key购买 nike

假设我有一个字符串,我想在我的代码中对其进行混淆处理。 (此示例仅供学习。)

我的计划是用宏包装字符串文字,例如

#define MY_STRING "lol"
const char *get_string() { return _MY_ENCRYPTION_MACRO(MY_STRING); }

并且,作为预构建步骤,通过我自己的预处理器运行我的源文件以查找 _MY_ENCRYPTION_MACRO 的所有用法并相应地混淆字符串。

我将如何使用 Visual C++ 进行预处理?

最佳答案

我在几个问题上发布了这个答案,因为很多人都遇到过这个问题,比如我自己,我也认为这是不可能的,尽管它很简单,人们写了解决方案,你需要一个自定义工具来扫描构建的文件然后扫描字符串并像那样加密字符串,这还不错,但我想要一个从 Visual Studio 编译的包,现在可以实现了!

您需要的是 C++ 11(开箱即用的 Visual Studio 2015 Update 1)

奇迹发生在这个新命令 constexpr

奇迹发生在这个#define

#define XorString( String ) ( CXorString<ConstructIndexList<sizeof( String ) - 1>::Result>( String ).decrypt() )

它不会在编译时解密XorString,只在运行时解密,但它只会在编译时加密字符串,所以字符串不会出现在可执行文件中

printf(XorString( "this string is hidden!" ));

它会打印出 "this string is hidden!" 但是你不会在可执行文件中找到它作为字符串!,你自己用 Microsoft Sysinternals Strings 程序检查一下下载链接:https://technet.microsoft.com/en-us/sysinternals/strings.aspx

完整的源代码相当大,但可以很容易地包含在一个头文件中。但也非常随机,因此加密的字符串输出总是会在每次新编译时发生变化,种子会根据编译时间发生变化,非常可靠,完美的解决方案。

创建一个名为 XorString.h 的文件

#pragma once

//-------------------------------------------------------------//
// "Malware related compile-time hacks with C++11" by LeFF //
// You can use this code however you like, I just don't really //
// give a shit, but if you feel some respect for me, please //
// don't cut off this comment when copy-pasting... ;-) //
//-------------------------------------------------------------//

////////////////////////////////////////////////////////////////////
template <int X> struct EnsureCompileTime {
enum : int {
Value = X
};
};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
//Use Compile-Time as seed
#define Seed ((__TIME__[7] - '0') * 1 + (__TIME__[6] - '0') * 10 + \
(__TIME__[4] - '0') * 60 + (__TIME__[3] - '0') * 600 + \
(__TIME__[1] - '0') * 3600 + (__TIME__[0] - '0') * 36000)
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
constexpr int LinearCongruentGenerator(int Rounds) {
return 1013904223 + 1664525 * ((Rounds> 0) ? LinearCongruentGenerator(Rounds - 1) : Seed & 0xFFFFFFFF);
}
#define Random() EnsureCompileTime<LinearCongruentGenerator(10)>::Value //10 Rounds
#define RandomNumber(Min, Max) (Min + (Random() % (Max - Min + 1)))
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
template <int... Pack> struct IndexList {};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
template <typename IndexList, int Right> struct Append;
template <int... Left, int Right> struct Append<IndexList<Left...>, Right> {
typedef IndexList<Left..., Right> Result;
};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
template <int N> struct ConstructIndexList {
typedef typename Append<typename ConstructIndexList<N - 1>::Result, N - 1>::Result Result;
};
template <> struct ConstructIndexList<0> {
typedef IndexList<> Result;
};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
const char XORKEY = static_cast<char>(RandomNumber(0, 0xFF));
constexpr char EncryptCharacter(const char Character, int Index) {
return Character ^ (XORKEY + Index);
}

template <typename IndexList> class CXorString;
template <int... Index> class CXorString<IndexList<Index...> > {
private:
char Value[sizeof...(Index) + 1];
public:
constexpr CXorString(const char* const String)
: Value{ EncryptCharacter(String[Index], Index)... } {}

char* decrypt() {
for(int t = 0; t < sizeof...(Index); t++) {
Value[t] = Value[t] ^ (XORKEY + t);
}
Value[sizeof...(Index)] = '\0';
return Value;
}

char* get() {
return Value;
}
};
#define XorS(X, String) CXorString<ConstructIndexList<sizeof(String)-1>::Result> X(String)
#define XorString( String ) ( CXorString<ConstructIndexList<sizeof( String ) - 1>::Result>( String ).decrypt() )
////////////////////////////////////////////////////////////////////

关于c++ - 如何制作 C 宏预构建预处理器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7870410/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com