flutter_secure_storage
flutter_secure_storage copied to clipboard
A Flutter plugin to store data in secure storage
Hi... In my google play console showed me the next message: Unsafe Encryption Your app contains unsafe cryptographic encryption patterns. Please see [this Google Help Center article](https://support.google.com/faqs/answer/9450925) for details. g0.c.r.q.B...
Hi! I use flutter_secure_storage in my flutter project like this: ``` late FlutterSecureStorage _storage; _storage = const FlutterSecureStorage( aOptions: AndroidOptions( encryptedSharedPreferences: true, ), ); ``` and when I update package...
[Since a recent update](https://github.com/acterglobal/a3/issues/1825) (potentially of libsecret, it isn't clear what exactly changed) secure_storage on linux is not working anymore. Regardless of whether [I put in extra pointless reads](https://github.com/acterglobal/a3/issues/1825) or...
Following the code below, the plugin automatically records encrypted data on Android and iOS. Or do I need to pass some options parameter? import 'package:flutter_secure_storage/flutter_secure_storage.dart'; final storage = FlutterSecureStorage(); await...
https://github.com/mogol/flutter_secure_storage/blob/v9.2.2/flutter_secure_storage/lib/options/apple_options.dart https://github.com/mogol/flutter_secure_storage/blob/v9.2.2/flutter_secure_storage/lib/options/ios_options.dart In AppleOptions and IOSOptions, `synchronizable` and `accessibility` are treated as non-null values. Also, since it is defined as `Map` in Dart, it can be treated as `[String :...
> [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: > PlatformException(Unexpected security result code, Code: -25299, Message: The specified item already exists in the keychain., -25299, null) > #0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:651:7) > #1 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:334:18)...
On a beautiful day, I received this token, and it seems that it caused my app to crash. To be more precise, I tried to catch the error, so it...
``` E/SecureStorageAndroid(17759): StorageCipher initialization failed E/SecureStorageAndroid(17759): java.security.KeyStoreException: AndroidKeyStore not found E/SecureStorageAndroid(17759): at java.security.KeyStore.getInstance(KeyStore.java:904) E/SecureStorageAndroid(17759): at com.it_nomads.fluttersecurestorage.ciphers.RSACipher18Implementation.createRSAKeysIfNeeded(RSACipher18Implementation.java:107) E/SecureStorageAndroid(17759): at com.it_nomads.fluttersecurestorage.ciphers.RSACipher18Implementation.(RSACipher18Implementation.java:36) E/SecureStorageAndroid(17759): at com.it_nomads.fluttersecurestorage.ciphers.KeyCipherAlgorithm$$ExternalSyntheticLambda0.apply(Unknown Source:2) E/SecureStorageAndroid(17759): at com.it_nomads.fluttersecurestorage.ciphers.StorageCipherFactory.getCurrentStorageCipher(StorageCipherFactory.java:82) E/SecureStorageAndroid(17759): at com.it_nomads.fluttersecurestorage.FlutterSecureStorage.initStorageCipher(FlutterSecureStorage.java:181) E/SecureStorageAndroid(17759):...
Hello, I've a problem with ios (17.5.1) on 9.2.1 version. Probably it's for every version as this is the keychain problem. Steps: 1. Save values to storage 2. Lock iphone...