daveed-al
daveed-al
work in progress for pwhash implementation. the libsodium crypto_pwhash function https://github.com/jedisct1/libsodium/blob/master/src/libsodium/crypto_pwhash/crypto_pwhash.c#L129 has a switch / case for the algorithm, values can either be can either be `pwhash_ALG_ARGON2ID13` or `pwhash_ALG_ARGON2I13` when...
Hi @ArteMisc - I apologize for the delay and thanks a lot for your detailed explanation. I am still going through it. The error I am getting (when `alg ==...
Implementing primitives now @ArteMisc to respect high level API approach.
updated the pull request - the seg fault no longer happens. Now using the following code to test: ```elixir outlen = 16 password = "thepassword" {:ok, password_salt} = Salty.Nif.randombytes_buf(16) opslimit...
any updates @ArteMisc ? thanks