// Stich md5 and sha1 back together $saltyhash = $md500.$sha100.$md501.$sha101.$md502.$sha102.$md503.$sha103.$md504.$sha104.$md505.$sha105.$md506.$sha106.$md507.$sha107.$md508.$sha108.$md509.$sha109.$md510.$sha110.$md511.$sha111.$md512.$sha112.$md513.$sha113.$md514.$sha114.$md515.$sha115.$md516.$sha116.$md517.$sha117.$md518.$sha118.$md519.$sha119.$md520.$sha120.$md521.$sha121.$md522.$sha122.$md523.$sha123.$md524.$sha124.$md525.$sha125.$md526.$sha126.$md527.$sha127.$md528.$sha128.$md529.$sha129.$md530.$sha130.$md531.$sha131.$md532.$sha132.$sha133.$sha134.$sha135.$sha136.$sha137.$sha138.$sha139.$sha140;
Hi guys, I want to share the tools I use to hash string using md5 and sha1 - Md5: Online Md5 Converter - Sha1: Sha1 Encryption Pretty useful tools! David
Nice script, because the salt is actually the password you wouldn't store it in the database, meaning that it'd be virtually impossible to crack this hash (unless you knew the hashing algorithm). You could modify it and make it more difficult too, maybe reverse the sha1 so that the first character of the md5 pass is salted with the last character of the sha1 pass.
It salts an MD5 string with SHA1. Read more about salt hashes at http://en.wikipedia.org/wiki/Salt_%28cryptography%29
It is a more secure way of storing hashes, as mentioned read above for more details.
It's not the conventional way of salting, but it can easily be modded.
Just a bit of fun :D
I want to share the tools I use to hash string using md5 and sha1
- Md5: Online Md5 Converter
- Sha1: Sha1 Encryption
Pretty useful tools!
David
I might just use this.. :)