super_cache_secure 1.0.1
super_cache_secure: ^1.0.1 copied to clipboard
AES-256-GCM encrypted in-memory cache for Flutter. Keys stored in iOS Keychain and Android Keystore. Part of the super_cache family.
1.0.1 #
- Improved README with badge set and package family links.
- Fixed pubspec description length to comply with pub.dev guidelines.
- Fixed
discarded_futureslint in test file.
1.0.0 #
- Initial stable release.
- AES-256-GCM encryption via the
cryptographypackage (hardware-accelerated). - Per-entry random nonce; MAC verified on every
get(). KeyStoreinterface — injectable in tests withoutflutter_secure_storage.FlutterSecureKeyStore— persists AES key in iOS Keychain / Android Keystore.wipeOnEvictionoption to zero-fill plaintext buffer after encryption.- Full
Cache<K,V>compatibility — drop-in as L2 inCacheOrchestrator.