Python SHA1 DECODE function
I cant find how to decode string encoded in sha1. I'm suprised that i can't find simple function in python docs or google doing sha1 decoding. I give up. I need help.. SHA1 is a hashing algorithm. Hashing is one-way, which means that you can't recover the input from the output for any non-trivial hash function. A simple example of a one-way hash function would be adding together all the digits of a number. 1234 would hash to 1 + 2 + 3 + 4 = 10 , but so would 4321 , 1900 , 5050 , and many other numbers. Given just the hash value of 10 , you can't tell whether the input was 1234 or 5050 because