redux-persist-sensitive-storage
redux-persist-sensitive-storage copied to clipboard
redux-persist storage engine for react-native-sensitive-info
I updated the requirements to the new react-native-sensitive-info v6. All tests still work fine and as expected.
Apparently v6 (alpha) is the official version that supports keystore on Android: https://mcodex.dev/react-native-sensitive-info/docs/ If it works you need to update the readme of this repo.
Hey, I moved the index.js file to an index.ts file and added some static types for the functions, I also tested the lib with the latest version of react-native-sensitive-info which...
Hi, There is a solution for remove IOS keychain from redux persist when app is been deleted ? Currently its save my sensitive info even the app was removed. Thanks...
From the [docs on v6](https://mcodex.dev/react-native-sensitive-info/docs/#v6x): > This version uses by default keystore to encrypt/decrypt data on Android. This should mean that using the keystore branch is no longer necessary. The...
I have the following code. `import createSensitiveStorage from 'redux-persist-sensitive-storage';` `const storage = createSensitiveStorage();` Note that I haven't passed any configuration options to the createSensitiveStorage() function. What happens if I don't...
The docs for `react-native-sensitive-info`, on which this package relies, suggests that the user has to provide authentication info before it allows access to the keychain or shared preferences (eg. fingerprint,...
When using this library in a react-native project that uses Jest for testing, I had to ensure that this module gets transpiled by Jest using its `transformIgnorePatterns` setting. There are...
Used this redux-persist-sensitive-storage library and faced the above issue while running the test cases. Tests suite failed to run `TypeError: (0 , _reduxPersistSensitiveStorage.default) is not a function` Using @testing-library/react-native How...