You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: apply security enhancements from security evaluation output results
More specific:
The cipher has changed from "AES/CBC/PKCS7Padding" to "AES/GCM/NoPadding" and an automatic migration flow is provided.
SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1") -> SecretKeyFactory.getInstance("PBKDF2WithHmacSHA512") and an automatic migration flow is provided.
SecretKeySpec(keyBytes, "AES") -> SecretKeySpec(keyBytes, "AES/CFB/PKCS5Padding") with no need for migration.