I'm migrating users from one user store to another. The user password info is stored in Argon2 hash. I have figured out all the inputs, I have the encoded hash but I cannot figure the steps between Hex Form and Encoded Form
I have used this generator for a lot of my testing.
My current database stores the passwords in the "Hex" format
1908e66ff0fb22c7e52f8820f511c9edc486....
The solution I am migrating to requires them to be in Encoded format for import
$argon2id$v=19$m=65536,t=2,p=1$<my-salt-hash>$GQjmb/D7IsflL4gg9RHJ7cS.... // I need last value
How do I turn the "Hex" string into either the full "Encoded" string at least the encoded hash password value (The last bit)