Intro
Hello! Today I want to introduce you to a basic concept in cryptography: hashing.
Hashing is a fundamental concept in Computer Science. I'm going to write this article from memory without doing any research or Googling. Therefore, this is all going to be based on my own understanding of hashing and in my own words. I would encourage you to do some more research and reading about hashing if you would like a deep understanding!
What is Hashing?
Hashing is the process of transforming a piece of data into a new piece of data that cannot be used to identify or reveal the source data. This is commonly done by applying a hashing function to some information.
A good way to demonstrate this is to use the example of a string of text. Consider a user entering their password on a website. When user data is entered, it is stored somewhere in some type of database. Imagine if user passwords were directly stored as strings in the database? That would mean that anyone with access to the database would have full access to all user passwords. A disgruntled employee or successful hacker could decide to sell your password on the dark web for a few Doge. This would be bad.
In order to avoid this, it is common to use a cryptographic hash in order to transform passwords into an unrecognizable output. Hashing functions are designed to always produce the same output for a given input, but if you change the input just slightly, this can completely transform the output. To illustrate this, let's consider a hashing function that takes any string as an input, and returns a 24-character alphanumeric string as an output. Here are some possible example inputs and outputs:
NOTE: In practice, the hashed output is generally much longer than 24 characters.
In order to keep users safe, we can hash their password and store the output from the hashing function in our database instead of the actual password. When the user tries to log in, we hash the password they enter and check the hashed output against the value stored in our database. If these two values match, we allow the user to log in. Voila!
This keeps users much more safe. Hackers and bad actors cannot discover user passwords, and even the company that stores your data has no idea what your password is. At this point you might be tempted to think "but what if I take the hashed output and feed it back through the hashing function ?" Well, remember that the hashing function is designed to give a unique output for each input. Here's what might happen if you try to do that:
As you can see, knowing what a user's password produces when it is passed through the hashing function tells you nothing about what the password actually is. Since bad actors can't get your password, they must resort to executing a brute force attack in order to attempt to crack your password. This involves entering many passwords over and over until the correct password is guessed. Many modern websites lock users out after too many failed login attempts, and this protects against brute force attacks. You should always use a secure password and avoid using the same password more than once. This will go a long way to protect your personal information and data!
Great information, and glad to see people who arent actually just providing click bait. Keep spreading the knowledge!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks! I'm hoping to do these on a regular basis. Appreciate the feedback
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@originalworks
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@originalworks2
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The @OriginalWorks bot has determined this post by @douglyford to be original material and upvoted it!
To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Awesome! Congrats, @douglyford! I saw that you were a level 25 and had a great post and wanted to double-check to make sure.
You taught me something, so thank you! Upvoted and followed, good luck!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you! Hope to have a few more of these out this week.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit