Re: Secure way to pack sounds in python?
Whatever you do, do not hard-code your encryption key. Do it for testing, perhaps, but when its time to release it in production, don't do that. It will make it so much easier to get the key if you do that.
Also, you can cythonize code directly into a binary; use the --embed option when calling cython on all your code. Then build it like you would any other C application and link it to the embeddable Python that you can download on Python's website. Then ship Python's DLLs along with your app and no one will be able to do much with your code unless you embed debug symbols (don't do that either, not in prod code).
-- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector