Encrypted and secure docker containers

前端 未结 7 1148
清酒与你
清酒与你 2020-12-04 19:18

We all know situations when you cannot go open source and freely distribute software - and I am in one of these situations.

I have an app that consists of a number o

相关标签:
7条回答
  • 2020-12-04 20:05

    What you are asking about is called obfuscation. It has nothing to do with Docker and is a very language-specific problem; for data you can always do whatever mangling you want, but while you can hope to discourage the attacker it will never be secure. Even state-of-the-art encryption schemes can't help since the program (which you provide) has to contain the key.

    C is usually hard enough to reverse engineer, for Python you can try pyobfuscate and similar.

    For data, I found this question (keywords: encrypting files game).

    0 讨论(0)
提交回复
热议问题