Come dice la documentazione, dovresti usare hashlib libreria non lo sha da Python 2.5.
È abbastanza facile fare un hash.
hexhash = hashlib.sha512("some text").hexdigest()
Questo numero esadecimale sarà facile da memorizzare in un database.
Come dice la documentazione, dovresti usare hashlib libreria non lo sha da Python 2.5.
È abbastanza facile fare un hash.
hexhash = hashlib.sha512("some text").hexdigest()
Questo numero esadecimale sarà facile da memorizzare in un database.