Using Crypt function Python 3.3.2
- by adampski
In Windows and Python version 3.3.2, I try and call the python module like so:
hash2 = crypt(word, salt)
I import it at the top of my program like so:
from crypt import *
The result I get is the following:
Traceback (most recent call last):
File "C:\none\of\your\business\adams.py", line 10, in <module>
from crypt import *
File…