Skip to content

1.3.0

Compare
Choose a tag to compare
@ptsiogas4 ptsiogas4 released this 17 Feb 14:28
· 8 commits to master since this release
  • feat: change minimum support version to API 19
  • feat: apply security enhancements from security evaluation output results
    • More specific:
      1. The cipher has changed from "AES/CBC/PKCS7Padding" to "AES/GCM/NoPadding" and an automatic migration flow is provided.
      2. SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1") -> SecretKeyFactory.getInstance("PBKDF2WithHmacSHA512") and an automatic migration flow is provided.
      3. SecretKeySpec(keyBytes, "AES") -> SecretKeySpec(keyBytes, "AES/CFB/PKCS5Padding") with no need for migration.