0

I use the Linkchecker module on my website but the database stores my urls as a urlhash. I'm not familiar with this kind of security, so is there anyway I can revert these strings back to the original url?

Michiel
  • 7,855
  • 16
  • 61
  • 113

1 Answers1

2

Hashing is a one-way process, designed to create signatures or fingerprints that are easily comparable by a machine. Reverting hashes to their original strings is almost impossible (depending on the hashing algorithm) and involves reverse engineering and number crunching.

So, to answer your question in short: no this is not possible.

see a similar discussion on md5

Community
  • 1
  • 1
fredo
  • 315
  • 1
  • 8