You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reference implementation of argon2 supports an output format that encodes the hashing parameters, along with the hash itself. This is useful, for example, if you're storing password hashes in a database and you want to upgrade the parameters (or even the algorithm itself) over time.
The reference implementation of argon2 supports an output format that encodes the hashing parameters, along with the hash itself. This is useful, for example, if you're storing password hashes in a database and you want to upgrade the parameters (or even the algorithm itself) over time.
The format is documented here: https://github.com/P-H-C/phc-string-format/blob/master/phc-sf-spec.md
The format is supported by other argon2 libraries/implementations, including https://github.com/hynek/argon2-cffi
Similar serialisation formats exist for most hashing schemes, and passlib supports many of them (including argon2).
The text was updated successfully, but these errors were encountered: