Home > database >  Sha512 decryption
Sha512 decryption

Time:11-11

After long string of text is encrypted with the sha512, able to launch before encryption without cipher? 77 d40086e301b5a88c2622198a0dd6e30c78462902fde644cdb05efccbd9a10d559b9cd55cee6a949e3bec02f5f9d90565a501b743649640772d6fc617e4ca94 like this encrypted cryptograph,

CodePudding user response:

Is don't say SHA512, SHA1 also don't want to decrypt, SHA algorithm technically is not encrypted, just hash (similar to the MD5), through the hash algorithm will drift long hash data into fixed summary, so in theory there is the possibility of collision (different data resulting from the hash of the A and B are the same), the so-called this kind of website, is built in A database, the common data (such as 45, 1123 A, etc.) the hash results are saved to the database, and then according to the hash value (that is, the so-called encrypted data) reverse lookup clear, if the original data is not common, the built-in database does not exist, can not find A clear, cannot decrypt,
  • Related