I'm building a login system and currently hashing passwords with bcrypt. Just wondering if that’s secure enough these days.
Don’t forget to use HTTPS — hashed or not, credentials shouldn’t be sent in plain text.
Also implement rate limiting and lockouts for brute force protection.
Yes, bcrypt is still standard. Use a strong cost factor (at least 12).