Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Argon2 descriptions #23319

Merged
merged 1 commit into from
Dec 21, 2020
Merged

Fix Argon2 descriptions #23319

merged 1 commit into from
Dec 21, 2020

Commits on Oct 9, 2020

  1. Fix Argon2 descriptions

    The threads option for the password_hash function does not define the maximum allowed number of CPU threads to be used by the hashing algorithm but the exact number of threads that is used.
    
    Similarly the memory_cost option for the password_hash function does not define the maximum allowed memory to be used by the hashing algorithm, but the exact amount of memory that is used by the hashing table. The minimum value is 8 KiB per thread.
    
    The time_cost option for the password_hash function does not define the allowed time in seconds, but the number of iterations for the hash function.
    
    If the minimum values are understood, the minimum values are used instead.
    
    Signed-off-by: MichaIng <micha@dietpi.com>
    MichaIng committed Oct 9, 2020
    Configuration menu
    Copy the full SHA
    ab32344 View commit details
    Browse the repository at this point in the history