Skip to content

Commit

Permalink
Increase minimum value to 600k
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Oct 10, 2023
1 parent 3847534 commit e811e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static class Constants

public static class AuthConstants
{
public static readonly RangeConstant PBKDF2_ITERATIONS = new(100_000, 2_000_000, 600_000);
public static readonly RangeConstant PBKDF2_ITERATIONS = new(600_000, 2_000_000, 600_000);

public static readonly RangeConstant ARGON2_ITERATIONS = new(1, 10, 3);
public static readonly RangeConstant ARGON2_MEMORY = new(15, 1024, 64);
Expand Down

0 comments on commit e811e2e

Please sign in to comment.