hachage aléatoire python

import random

hash = random.getrandbits(128)

print("hash value: %032x" % hash)
Yoosof