Given the following argon2 hash
$argon2id$v=19$m=65536,t=32,p=8$mJmKA5qamzXOPJZYw4wCEUKY$COkMH0RckaZ/3bhYCdCQjLuzoLKxcAmk4TzmHRRgTQ8
How should the hash be stored in a database? From the answers of this question it says you shouldn't store a salt in a database.
But in the above argon2 hash we see the salt is mJmKA5qamzXOPJZYw4wCEUKY
. So does this mean only the hash itself, COkMH0RckaZ/3bhYCdCQjLuzoLKxc
should be stored in a database? I would assume all of the other information about the hash at the beginning (such as version, v, m, t, and p) wouldn't be stored for security reasons as well?