Anyone have some ideas on how to encrypt files. I need to
1. Encrypt .py files so they can be python version independent
2. hide the encrypthion algorithm.
I can do this now, but I need to know if there is a better way than creating a .pyc file out of the encrypthion algorithim which is in the function that the import manager uses when it encounters a .pye file (encrypted python file) The .pyc file has to be created for every version of python.
Thanks