Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Nov 11, 2024
1 parent 51f90f5 commit da5d1c7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,10 +367,9 @@ const result = argon2id('password', 'salt', { t: 2, m: 65536, p: 1 });
Argon2 [RFC 9106](https://datatracker.ietf.org/doc/html/rfc9106) implementation.

> [!WARNING]
> The implementation is a few times slower than native code.
> While selecting "slow" params, they may not be slow for GPU password brute-forcer.
> All other JS implementations are the same, because there are no fast u64 arrays.
> We suggest to use [Scrypt](#scrypt) instead.
> Argon2 can't be fast in JS, because there is no fast Uint64Array.
> It is suggested to use [Scrypt](#scrypt) instead.
> Being 5x slower than native code means brute-forcing attackers have bigger advantage.
#### utils

Expand Down

0 comments on commit da5d1c7

Please sign in to comment.