|
|
|
|
|
by tvdw
4946 days ago
|
|
For the record, distributing Python scripts doesn't have to mean distributing the source: it's possible to just execute the compiled .pyc files, which are harder to crack than (for example) Java's .class files. Also, since xor is just a CPU instruction, you won't immediately notice it in the decompiled script (if you get that far). With all the overhead that decompilers tend to produce, it's really easy to miss. |
|
Literally the only thing that goes missing from .py to .pyc is comments.