I have successfully written a simple program in Python to encrypt files. That program depends on pycrypt 2.6 package, and this package has *.pyd Python libs.
It works fine in standard Python 3.3 VM. Nice, I thought, when finished to write the program! :)
But after that I tried to run my program on production environment, that uses a specific embedded Python 3.3 VM... And it doesn't load *.pyd files, so I am stuck with running my pycrypto-based program in that Python VM.
Are there any Python crypto libraries with RSA and AES, that wrote in pure Python and doesn't use *.pyd files?
Thank you very much!