I think If you're talking about the password hashing algorithm bcrypt, the main difference is that md5 is designed to be fast, and bcrypt is designed to be slow. This makes it harder for an attacker to brute-force a password. Bcrypt has been around since the late 90s and has handled significant scrutiny by the information security/cryptography community. It has proven reliable and secure over time.amir2314 wrote: Thu Mar 17, 2022 2:50 pmwwonderfull wrote: Thu Mar 17, 2022 9:06 am You can email them or contact them and see if it can be resolved other than that try using other free webhosts to test your project and see if it works. If you think wamp is having problem try using XAMPP and see if that works.
Is it necessary to use bcrypt For my website ?
According to some MD5 has been cryptographically broken and considered insecure. For this reason, it should not be used for anything. Instead, developers should switch to the Secure Hash Algorithm or a Symmetric Cryptographic Algorithm.