In 2018, what is the recommended hash to store passwords: bcrypt, scrypt, Argon2?

There are many questions about picking a hash function, including How to securely hash passwords? or Are there more modern password hashing methods than bcrypt and scrypt?, with very detailed answers, but most of them date quite a bit.
The… Continue reading In 2018, what is the recommended hash to store passwords: bcrypt, scrypt, Argon2?

Is it safe/wise to store a salt in the same field as the hashed password?

In using Argon2 for hashing passwords in my application, I’ve noticed it generates a string like this (e.g. for password “rabbit”):

$argon2i$v=19$m=65536,t=3,p=1$YOtX2//7NoD/owm8RZ8llw==$fPn4sPgkFAuBJo3M3UzcGss3dJysxLJdPdvoj… Continue reading Is it safe/wise to store a salt in the same field as the hashed password?