I am working on an app that needs to encrypt / decrypt data coming from and going to client app coded in AS3 (yeah I know...) that use this lib http://crypto.hurlant.com/
I found many threads here or there about AES encryption with Python but for some reason I wasn't able to use them in my case.
My encrypted data is AES 256 bits CBC PKCS#5 then Base64 encoded and transmitted via web socket to Python.
Example of data generated by client app :
key : fce4aa4dcf0d2b27fe4ffdafa602c81d1930c410f48ada5c763d4c4052a939eb
IV : c75271d593ca86ca785e3bb25e8d02cb
clear data : This bloody encryption engine won't work !
encrypted data : 44FsQIcqM412+YXZBwwoQSCz2uB9QPQMXJ410Xpw1f/M5RTRS7N6yfziAGq/Fd/E
I tried using the code on this thread Encrypt & Decrypt using PyCrypto AES 256 but there are so many example with different settings that I don't know which one to choose, and I am really a noob with encryption. Any help on this ?