flutter_secure_storage
flutter_secure_storage copied to clipboard
A Flutter plugin to store data in secure storage
I added the package to my iOS/Android flutter app and since that I'm unabled to build against android with the following error. ``` * What went wrong: Execution failed for...
Hi, I am facing this where I have protected data stored in my keychain using flutter_secure_storage and I need to check if protected data is available or not then whenever...
Do not hinder `wasm` compilation. ``` Context: The unavailable library 'dart:html' is imported through these packages: web_plugin_registrant.dart => package:flutter_secure_storage_web => dart:html ``` **Describe the solution you'd like** Move away from...
I encountered an issue on Mac with this package. When I debug my app, I can read from secure storage just fine, even in flutter release mode. But after building,...
close #619 Fixed `deleteAll` function to only delete values added by flutter_secure_storage_web.
close #726 I have added a function to wrap a key stored in LocalStorage using an application specific encryption key. This function uses the WebCrypto API [wrapKey](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/wrapKey) and [unwrapKey](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/unwrapKey). The...
Info found here: [Jetpack security crypto library](https://developer.android.com/privacy-and-security/cryptography#jetpack_security_crypto_library) also found some info on how to proceed in the future for the maintainers and users [securing-the-future-navigating-the-deprecation-of-encrypted-shared-preferences](https://proandroiddev.com/securing-the-future-navigating-the-deprecation-of-encrypted-shared-preferences-91ce3c20ae8d) I don't mean this Issue to...
- [x] fixed integration Flutter example - [x] [migrated Flutter Driver test to integration_test](https://docs.flutter.dev/release/breaking-changes/flutter-driver-migration) - [x] updated iOS example - [x] added iOS integration test - [x] updated Android example...
The current implementation is "secure" in the sense that when a user looks at LocalStorage, they cannot immediately identify the value. (I think that's enough for most cases.) https://github.com/mogol/flutter_secure_storage/blob/v9.2.2/flutter_secure_storage_web/lib/flutter_secure_storage_web.dart#L104 On...
I'm trying to get keychain data from native app after upadating it with flutter app. Flutter app has bundleID and accountName for keychain the same as native app, but `final...