[Tool] Convert binary file to C/C++ array header file (.h)

Convert binary file to C/C++ array header file.h

foreword

(1) In order to facilitate the introduction of some PE files (dll, exe, sys) or other binary files into the project, we can write them as array files and encrypt them (2) What is the use of this? For example, our program needs
to
import A dll file, it is very dangerous if we put the dll file directly in the program directory, it is easy to be statically cracked by others ,
We should convert the dll file to be used into a C/C++ array and put it in our own exe memory and encrypt it, and then decrypt it when we use it, and then save it locally and loadlibrary or directly paste it into the memory for use, it is not easy for others to crack our dll file statically

how to use

file directory ->Select binary files to convert to array
create directory ->Output header file directory
On the right side, you can choose the encryption method or not

step

Screenshot of output header file

insert image description here

download

Go to Kanxue forum to download

Guess you like

Origin blog.csdn.net/deadpoolwilson12/article/details/130520821