Download:
wget http://www.louko.com/alo-aes/alo-aes-0.3.tar.gz
Decompress:
gunzip alo-aes-0.3.tar.gz tar -xf alo-aes-0.3.tar
Installation:
cd alo-aes-0.3 python setup.py install
In Python:
Import module:
import aes
Cypher inicialization:
password = "abcdefghijklmnop" cipher = aes.Keysetup(password)
Encryption:
plaintext = "hello " ciphertext = cipher.encrypt(plaintext)
Decryption:
plaintext = cipher.decrypt(ciphertext)
* You can use cbcdecrypt function instead of decrypt.
Enjoy …
…matus…