Argon2
Last updated
Was this helpful?
Last updated
Was this helpful?
In order to understand hex and type parameters read
Description: Password hashing winner of PHC.
Outputs: Variable
Uses: Highest resistance against GPU cracking attacks, safest against side-channel attacks.
In this example We generate hash and validate password with argon2i from string Hello world! with t_cost, m_cost, parallelism and salt parameters given.
On argon2_js["family"] can be one of {argon2i, argon2d, argon2id}
On argon2_js["operation"] can be {hash, verify}
ARGON2 only supports "type":"string"
Json to hash
Json to verify
In order to understand t_cost, m_cost, parallelism and salt parameters, please read .
In this tutorial We are protecting user's credentials with TLS and Argon2. It means the information is protected in motion, at rest, in use.