I was reading the post Is it safe/wise to store a salt in the same field as the hashed password?:
$argon2i$v=19$m=65536,t=3,p=1$YOtX2//7NoD/owm8RZ8llw==$fPn4sPgkFAuBJo3M3UzcGss3dJysxLJdPdvojRF20ZE=
My understanding is that everything prior to
p=
are parameters, the body of thep=
is the salt, and the last part is the hashed password."
I do not understand the highlighted part. I thought$
slices variant, version, parameters, salt and hash, so that:
- p (parallelism parameter) =
1
- salt =
YOtX2//7NoD/owm8RZ8llw==
- hash =
fPn4sPgkFAuBJo3M3UzcGss3dJysxLJdPdvojRF20ZE=
Am I correct in identifying salt and hash here?