Robert von Burg 2023-11-30 13:32:01 +01:00
parent c5402ba4fb
commit 4b0b031b2b
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class AesCryptoHelper {
private static final int AES_KEY_LENGTH_BITS = 128;
private static final int IV_LENGTH_BYTES = 16;
private static final int PBE_ITERATION_COUNT = 10000;
private static final String PBE_ALGORITHM = "PBKDF2WithHmacSHA1";
private static final String PBE_ALGORITHM = "PBKDF2WithHmacSHA256";
private static final String HMAC_ALGORITHM = "HmacSHA256";
private static final int HMAC_KEY_LENGTH_BITS = 256;