如何嵌入和保护一些“文本”我的应用程序中的文件

发布于 2024-10-11 02:43:36 字数 147 浏览 3 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋意浓 2024-10-18 02:43:36

嵌入内容的问题在于你只能混淆它。想象一下,您使用某个密钥加密文本文件;现在您必须将解密密钥与可执行文件一起分发,以便它可以读取文件。好的,但现在无论谁提取文本文件也可以提取密钥......

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文