Tagged Questions

2
votes
3answers
2k views

M2Crypto Encrypt/Decrypt using AES256

Can someone provide me code to encrypt / decrypt using m2crypto aes256 CBC using Python
1
vote
1answer
167 views

Decrypt in Python an encrypted message in Java

I'm trying to decrypt in Python (with M2Crypto) an encrypted message generated in Java with this library My code (which I actually found here) works decrypting messages encrypted by itself, but not ...
0
votes
1answer
52 views

PKCS #5 padding with m2crypto

Is there any way to use PKCS #5 padding with AES CBC in m2crypto? Can't seem to find one too easily. Is there any python library that can do this? Or do I need to do it manually? If so, are there any ...
0
votes
0answers
176 views

AES method for data stream in Python

i want to apply an AES 128b encryption (probably CBC + Padding) on a data stream. if that matters, i'm sending chunks of around 1500bits each. i work in Python, and i did a small test with M2Crypto ...