Don’t use MD5 for password hashing! You can migrate to BCrypt or other stronger hashing generator

If you start to learn programming and you will set up apps with login systems, you need username and password to log into your system. Username and password, is very extremly need protection more than any data in your database. So, we need hashing algorythm to save your password safely. First, you must know HASH is […]