After installing simpleCrypto and PyCrypto in windows... i am getting this error...
steps followed: cd simplecryto/dist; python setup.py install cd pycrypto/dist; python setup.py install
test.py:
from simplecrypt import encrypt, decrypt
ciphertext = encrypt(password, 'my secret message')
plaintext = decrypt(password, ciphertext)
python test.py
Traceback (most recent call last):
File "test.py", line 1, in <module>
from simplecrypt import encrypt, decrypt
File "C:\Python34\lib\site-packages\simplecrypt\__init__.py", line 2, in <module>
from Crypto.Cipher import AES
ImportError: No module named 'Crypto'