You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you sign up for an account somewhere, some websites do not actually store your password in their databases.
4
+
Instead, they will transform your password into something else using a cryptographic hashing algorithm.
5
+
6
+
After the password is transformed, it is then called a password hash.
7
+
Whenever you try to login, the website will transform the password you tried using the same hashing algorithm and simply see if the password hashes are the same.
8
+
9
+
Create the function that converts a given string into an md5 hash. The return value should be encoded in hexadecimal.
0 commit comments