What libraries do you know that can be used to encrypt in C/C++ and decrypt in python for the RSA/AES/DES algorithms?
We are going to use one of the those algorithms to encrypt some parameters in URL.
We have already tried some libraries in C++:
- Crypto++
- http://code.google.com/p/rsa/
and in python
- pycryptopp
- Python-RSA
But unfortunantly I didn’t manage to match the parameters/keys that those libraries use.
I use pycrypto http://pypi.python.org/pypi/pycrypto/2.6
pycryptopp is just wrappers around Crypto++ , which means you’re likely doing something wrong in Crypto , Python or both.
If you’re just using payloads in URLs for web stuff, I wrote this library that handles all that crap
https://github.com/jvanasco/insecure_but_secure_enough/blob/master/insecure_but_secure_enough/__init__.py