A modern Argon2 password hashing library for Erlang.
Argon2 is a password hashing function that was designed to be fast, memory-hard, and resistant to side-channel attacks.
Read more about Argon2 on the official Argon2 website.
{ok, RawHash, EncodedHash} = jargon:hash(<<"password">>, <<"saltsalt">>, argon2d, 32, 12, 1, 32).
{ok, true} = jargon:verify(EncodedHash, <<"password">>).
git submodule update --init --recursive
make compile
Contributions are welcome!