I'm trying to compile python file with Cython and it's compiled to .c file Then I'm using gcc to encryption What is the best way to do this
I'm doing it like this :
cython -a test.py
then :
gcc -shared -pthread -fPIC -fwrapv -O2 -Wall -fno-strict-aliasing -I/usr/include/python2.7 -o test.so test.c
but someone told me he decryption my file and see the code What is the best way to encrypt with GCC
thanks.