flutter_secure_storage_plus 0.0.5
flutter_secure_storage_plus: ^0.0.5 copied to clipboard
Enhanced secure storage with biometric unlock and key rotation.
0.0.5 TBD #
Security #
- CRITICAL: Fixed security vulnerability - replaced insecure storage implementations with proper secure storage:
- Android: Now uses
EncryptedSharedPreferences(AES-256 encryption) instead of plainSharedPreferences - iOS: Now uses Keychain Services instead of
UserDefaults(encrypted keychain storage) - macOS: Now uses Keychain Services instead of
UserDefaults(encrypted keychain storage) - Web: Now uses
localStorageinstead of in-memory Map (persistent storage)
- Android: Now uses
- Added
androidx.security:security-cryptodependency for Android encryption - All platforms now properly encrypt data at rest
Documentation #
- Added example GIF to README demonstrating plugin usage
Note: Data stored with previous versions will not be accessible after upgrading. Users will need to re-write their data with the new secure storage implementation.
0.0.4 #
Changed #
- pubspec.yaml cleaned for pub.dev and pana compliance
- No breaking changes, just metadata and publishing fixes