14 lines
382 B
Plaintext
14 lines
382 B
Plaintext
==== Selecting safe custom parameters for Argon2
|
|
|
|
To determine which one is the most appropriate for your application, you can use
|
|
the argon2 CLI, for example with OWASP's first recommendation:
|
|
|
|
[source,shell]
|
|
----
|
|
$ pip install argon2
|
|
$ python -m argon2 -t 1 -m 47104 -p 1 -l 32
|
|
----
|
|
|
|
https://argon2-cffi.readthedocs.io/en/stable/api.html#module-argon2.profiles[Learn more here].
|
|
|