hash
i've been wondering what a hash is what-not. i googled it and found out it can be used as an encryption. so how can i relate this to the "other challenges" area so i can solve those hashes or whatever? anyone know a site cuz i mainly got company websites telling how they use thier hashes or something when i googled it?
A hash is basically one way encryption. It's meant to take a string and scramble it one way, so it cannot be decrypted. You can't decrypt it then, so if used for data validation, such as a password where you have the original password and the encrypted version, you compare what someone enters upon login to the encrypted version by encrypting the password they input. If it matches, the password is correct.
It's a great concept, and works wonders.