What is it? is a method of determining the equivalence of two chunks of data. A hash function is an irreversible function that generates a unique string for any set of data. Examples of these data could be files, strings, streams, and any other items that can be represented in binary format. Hashing cryptographic You’ve probably seen a hash string on the downloads page of some of your favorite tools, packages, or libraries. For example, Kali Linux . But why is that? has one for each of its releases This is to ensure that the original file on their server is the same as the one that you’ve downloaded. For example, the hash of the Kali ISO is below. SHA-256 If you download the file, you should hash your local copy. If the resulting hash is equivalent to the one found on their website, you can rest assured that the file has not been tampered with during the download and that you have the same, correct file. Wait…but how do you hash stuff? Excellent question. Let’s get technical! I’m assuming you have Python 2 installed, by the way. Let’s import the library we need. 1- import hashlib as hash Now let’s choose our hashing algorithm. 2- For more information on their differences, check this out . sha = hash.sha256() We’re basically set up, now we’ll go ahead test the function on a string. 3- # Insert the string we want to hashsha.update('Hello World!')# Print the hexadecimal format of the binary hash we just createdprint sha.hexdigest()"""4d3cf15aa67c88742e63918825f3c80f203f2bd59f399c81be4705a095c9fa0e""" Awesome, there’s a SHA-256 hash of the string “Hello World!”. Now we’ll prove that the hash is different for similar data. # Note the missing '!'sha.update('Hello World')print sha.hexdigest()"""a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e""" It’s totally different. Now that we know that our function works, let’s try it on a file 4- # WARNING: Do NOT do this with large files.# For large files, see the snippet here -> with open('kali.iso', 'rb') as kali_file:file_buffer = kali_file.read()sha.update(file_buffer)print sha.hexdigest()"""1d90432e6d5c6f40dfe9589d9d0450a53b0add9a55f71371d601a5d454fa0431""" https://gist.github.com/aunyks/042c2798383f016939c40aa1be4f4aaf There we go. You’ve got some pretty good knowledge of hashing now. So, go. Go on! Secure the integrity of your data and hash all the things! Also, follow me on and , please. Twitter Github