Replies: 2 comments 9 replies
-
There is a good discussion: https://stackoverflow.com/questions/261638/how-do-i-protect-python-code-from-being-read-by-users |
Beta Was this translation helpful? Give feedback.
-
@ap4499 well said, thanks for chiming in! Just to summarize about encryption, in symmetric cryptography you use the same key for both encrypting and decrypting the "message", so the key should be delivered to the "recipient". In asymmetric cryptography you use public key to encrypt the message and private key to decrypt it. Asymmetric algorithm can also be used for "signing" message. This time you use private key to generate a signature and recipient use public key to verify it. Hope that helps. |
Beta Was this translation helpful? Give feedback.
-
Duplicate Check
Describe the requested feature
When I packaged the flet for the Windows platform, it successed, and I knew it was pretty cool.
But I found the app.zip in the my_porject/build/windows/data/flutter_assets/app/ directory.
So, when I unzipped the app.zip, I saw the source code of my project.
I think this is very unsafe for my source code.
This means that anyone who opens this software can get my source code.
So, I'm wondering if the flet can encrypt this app.zip, and that's very wonderful.
Suggest a solution
No response
Screenshots
Additional details
No response
Beta Was this translation helpful? Give feedback.
All reactions