简体   繁体   中英

SHA1 Salted Hash

I'm working on Hashing and have just come across my first salted hash. I can't figure out how to separate or identify the salt from the hash. I have figured out how to get the encrypted message below, but just need this seperation.

I have been up for almost 24 hours working on it. Any help would be appreciated!

74c95cff4b3daa8a65ae413bfab10dc45d1a07b6

You cannot. The salt is added to the original string before it was hashed.

Its sha1(str + salt) not sha1(str) + salt so you cannot split it from the hash.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM