Skip to content

Commit

Permalink
Update AES size for to fix timeout errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Sae126V committed Dec 6, 2023
1 parent 550a8da commit b126ec9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public class IamTotpMfaCommons {
public static final String KEY_TO_ENCRYPT_DECRYPT = "define_me_please";
public static final String TOTP_MFA_SECRET = "secret";

public static final int DEFAULT_KEY_SIZE = 126;
public static final int DEFAULT_KEY_SIZE = 128;
public static final int DEFAULT_ITERATIONS = 65536;
public static final int DEFAULT_SALT_SIZE = 16;

public static final int ANOTHER_KEY_SIZE = 192;
public static final int ANOTHER_ITERATIONS = 6000;
public static final int ANOTHER_SALT_SIZE = 36;
public static final int ANOTHER_SALT_SIZE = 8;
}

0 comments on commit b126ec9

Please sign in to comment.