]>
gitweb.pimeys.fr Git - scripts-20-100.git/blob - create_password.py
4 """Récupère en parmètre un mot de passe, le sale et le hashe en sha256.
5 Sort un format NK2015-compliant."""
7 table
="azertyuiopqsdfghjklmwxcvbn0123456789"
13 def random_chain(size
):
14 return "".join([random
.choice(table
) for i
in range(size
)])
16 if __name__
=="__main__":
19 hashed
=hashlib
.sha256(sel
+password
).hexdigest()