Posts: 193
Threads: 58
Joined: Mar 2017
Reputation:
0
I've used hashing pass but now how i can know the password from file?
if u know what I mean?
Posts: 728
Threads: 109
Joined: May 2015
Reputation:
0
i think you need to decrypt it if thats what you mean
Posts: 115
Threads: 2
Joined: Apr 2017
Reputation:
0
You want to decrypt hash ?
"Hash" is meant to be one-way encoding, there should be no way to get the input back from hash.
Even better way is hash with salt, then the same password would produce different hash.
Using only hash should really be illegal...