What language will protect my source code?

前端 未结 19 1149
时光取名叫无心
时光取名叫无心 2021-01-05 22:18

I wish to create shareware software that contains a registration algorithm. I am looking for a programming language, that cannot be easily decompiled into readable code. F

相关标签:
19条回答
  • 2021-01-05 22:47

    All code can be read back in assembly. Someone can reverse engineer your application and see what the machine is doing.

    0 讨论(0)
  • 2021-01-05 22:48

    Repeat after me: "Obscurity is not security."

    You would be better off using a hard encryption algorithm (where "hard" doesn't mean "difficult", but "not bi-directional; not easily reversible".

    0 讨论(0)
  • 2021-01-05 22:52

    Try finding an obfuscator. As the name suggests it obfuscates the code enough that reverse-engineering it will not be trivial.

    Or use C/C++. Those can be disassembled, but that's it.

    Of course, this is just enough to keep the not-sufficiently-competents from understanding and reverse-engineering the code.

    0 讨论(0)
  • 2021-01-05 22:54

    Isn't this logically impossible?

    If you can run the code, you can get the instructions being executed by your CPU. At that point, your algorithm is readable, for some definitions of readable.

    0 讨论(0)
  • 2021-01-05 22:54

    If you're lookig "for something that can be only decompiled into assembly", that essentially means that you want to use a language that gets compiled (or assembled) directly into a native code executable.

    The usual prime suspects then are C, C++, Delphi, VB6. Of course, also assembly meets your criteria, although I doubt you'd want to write any project of decent size in it.

    0 讨论(0)
  • 2021-01-05 22:58

    "I'm looking for something that can be only decompiled into assembly."

    Try writing your program in assembly. That is the best possible solution.

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