This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#-*- encoding: Utf-8 -*- | |
from hashlib import md5 | |
from sys import argv | |
try: | |
from Crypto.Cipher import AES | |
except ImportError: | |
exit('Erreur : la bibliothèque "PyCryto" n\'est pas installée') |