Replies: 2 comments 1 reply
-
If what you want is to elimate part of code, pyarmor has no this feature. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Sorry, make decision by yourself, :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
let say I have, demo_mode in my code which is defined in one separated file as a variable and used in many files in my program. In demo mode code has limited functionality and some logic are not available in demo_mode, for example:
and
How secure is pattern above? If I defined
demo_mode=True
in each file (so no module import to check variable) is it change it anything in sense of security of the code?I also do not want to include part which is not available in demo_mode (
# do complex job
in code above) in obfuscated files. Is it possible with pyarmor? If not is there any software which can perform constant folding id est convert code to:Beta Was this translation helpful? Give feedback.
All reactions