Is there any python AES encryption library that will work well with python 3.0?
2 answers
I suggest an open source project slowaes
, http://code.google.com/p/slowaes/ - should be trivial to adapt if it doesn't work due to being pure-Python (and for 128 bits of data " the slow "part doesn't matter).
+3
a source to share
To properly encrypt data, you need more than just an encryption algorithm. You are probably best off finding a complete library with documentation showing how to do it right, if you absolutely must do it yourself.
Encryption alone is not enough. How do you generate keys? What mode of operation do you use? Are you using MAC for data?
Direct AES in ECB mode information leak. Without a MAC, although the data is encrypted, an attacker could still tamper with your data.
0
a source to share