flutter_secure_storage
flutter_secure_storage copied to clipboard
A Flutter plugin to store data in secure storage
when I try to call secure storage in a spawned isolate, I got an error: ``` Unsupported operation: Background isolates do not support setMessageHandler(). Messages from the host platform always...
We've observed this behavior at least on Linux and Android using most recent `8.0.0` version. Haven't tried on other devices. ### Scenario There is a key `A` with a value...
my class for storage ``` class StorageHelper { late FlutterSecureStorage _storage; StorageHelper() { _storage = FlutterSecureStorage( aOptions: _getAndroidOptions(), iOptions: _getIOSOptions(), ); } AndroidOptions _getAndroidOptions() => const AndroidOptions( encryptedSharedPreferences: true, );...
Hello, I think the option `encryptedSharedPreferences: true` works for `read` but not `readAll`. I can read value by specific key but cannot retrieve all values. Errors thrown on some devices...
Please, look at following steps. I've tried to solve this but couldn't find any solutions. thank you! ` mkdir packages cd packages flutter create --template=package cd flutter pub add flutter_secure_storage...
When I analyzed the project with mobsf, it said that it found a high priority error. When I followed the error, I discovered that an old method was used in...
This package seems to use AES-CBC-PKCS7 encryption for secure storage. PKCS5 and PKCS7 are known to be vulnerable to oracle padding attacks in combination with CBC mode of operation. The...
There was no such problem before. I'm not sure if the error is related to this package. /AndroidKeysetManager( 1749): keyset not found, will generate a new one. can't read keyset;...
With the current version (8.0.0), and the initialisation is done as follows: ```dart FlutterSecureStorage( iOptions: IOSOptions.defaultOptions.copyWith( accountName: '${env.appType} App Secure Storage', accessibility: KeychainAccessibility.unlocked_this_device, synchronizable: false), mOptions: MacOsOptions.defaultOptions.copyWith( accountName: '${env.appType} App...