Skip to content

Commit

Permalink
[Fix][Android] Unsupported RSA key size for StrongBox (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
frw committed Feb 15, 2024
1 parent f5bef7e commit 75171f7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ public class CipherStorageKeystoreRsaEcb extends CipherStorageBase {
public static final String TRANSFORMATION_RSA_ECB_PKCS1 =
ALGORITHM_RSA + "/" + BLOCK_MODE_ECB + "/" + PADDING_PKCS1;
/** Selected encryption key size. */
public static final int ENCRYPTION_KEY_SIZE = 3072;
public static final int ENCRYPTION_KEY_SIZE = 2048;
public static final int ENCRYPTION_KEY_SIZE_WHEN_TESTING = 512;

//endregion
Expand Down

0 comments on commit 75171f7

Please sign in to comment.