I am working on a project that uses sensitive information (such as a password) and does something with it. The issue is that I do not want that information anywhere accessible on my computer. After doing much research I found the best few solutions here. Here are them in order
Its first recommendation is to encode your python file into pyc however "there are ready-made decompiler tools, and the cracking cost is low"
The other would be to obfuscate but I believe the password would still be in the file or at risk of being found out.
Then there is py2exe- however, I want it to have the ability to run on multiple platforms (macOS and Linux). It could also still be decompiled according to the website above.
The last would be to use cythonize which makes it difficult to crack however feels extremely convoluted- I would also have to recompile for Windows and Unix as well- but it works.
I also tried using input() in my code but I found that what you type in the console is stored as well as displayed on your screen.
Is Cythonize the only way to simply make the code encrypted? Or hide the password in some way?