如何嵌入和保护一些“文本”我的应用程序中的文件
我的 C++ 应用程序使用一些“文本文件”,这些文件非常重要,我需要保护它们的内容以供查看/解密/提取/反汇编...
另外,如果可能的话我想将它们嵌入到 DLL/EXE
Can 中你告诉我是否有办法实现这一目标?如果可能的话,代码必须是可移植的!
My c++ application use some "text files", theses files are very important and I need to protect their content to be viewed/decrypted/extracted/dissassembled...
Also, if possible I would like to embed them in the DLL/EXE
Can you tell me if there is a way to achieve this? The code must be portable if possible!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嵌入内容的问题在于你只能混淆它。想象一下,您使用某个密钥加密文本文件;现在您必须将解密密钥与可执行文件一起分发,以便它可以读取文件。好的,但现在无论谁提取文本文件也可以提取密钥......
The problem with embedded content is that you can only obfuscate it. Imagine that you encrypt the text files with some key; now you must distribute the decryption key with the executable so that it can read the files. OK, but now whoever extracts the text files can also extract the key...