Security Provider Login and Argon2

:smiley: It’s in the crypto formatters in the password hash option.

It will output the following. Something like this
$argon2id$v=19$m=65536,t=4,p=1$aXY4ajIxUFhPMG9NYXdUWA$tbMa2mHYAMxptMxa7+XBMe7vM7U9j5qgHvj5oQWNadw

Where the first values are the argon2 used algorythm and some input parameters used. The password starts at p=1

First dollar sign is the salt (aXY4ajIxUFhPMG9NYXdUWA) and the second one is the hash (tbMa2mHYAMxptMxa7+XBMe7vM7U9j5qgHvj5oQWNadw)

1 Like