react-native-sensitive-info
manages all data stored in Android Shared Preferences, iOS Keychain and Windows Credentials. You can set and get all key/value using simple methods.
Hi ๐! It's been 3 years since I released RNSensitiveInfo's first version only to fix a problem that I was facing at that moment. I was starting my career as JS Developer and RNSensitiveInfo helped me a lot through my learning path. Unfortunately, I don't have too much time as I wanted to, to support by myself this awesome library that we've built so far. So, I'm looking for developers who could help during this journey... We have so many pending issues, features, security improvements, unity/integration tests that could be done... I'm still willing to help and take care of releasing it.
Feel free to contact me,
Best Regards!
Install react-native-sensitive-info
using:
npm i -S react-native-sensitive-info
or yarn add react-native-sensitive-info
react-native link react-native-sensitive-info
If you are using Cocoapods add the following line to your Podfile:
pod 'react-native-sensitive-info', path: "../node_modules/react-native-sensitive-info"
otherwise follow those steps:
In XCode, in the project navigator:
- Right click Libraries
- Add Files to [your project's name]
- Go to node_modules/react-native-sensitive-info
- Add the .xcodeproj file
In XCode, in the project navigator, select your project.
- Add the libRNSensitiveInfo.a from the RNSensitiveInfo project to your project's Build Phases โ Link Binary With Libraries
- Click .xcodeproj file you added before in the project navigator and go the Build Settings tab. Make sure 'All' is toggled on (instead of 'Basic').
- Look for Header Search Paths and make sure it contains both
$(SRCROOT)/../react-native/React and $ (SRCROOT)/../../React - mark both as recursive. (Should be OK by default.)
Run your project (Cmd+R)
Same steps as iOS but change the Base SDK to macOS in Libraries/RNSensitiveInfo.xcodeproj.
Go to settings.gradle
inside your android project folder and paste this lines there:
include ':react-native-sensitive-info'
project(':react-native-sensitive-info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sensitive-info/android')
and paste it into build.gradle
:
compile project(':react-native-sensitive-info')
In your MainApplication.java
add:
import br.com.classapp.RNSensitiveInfo.RNSensitiveInfoPackage; //<- You must import this
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNSensitiveInfoPackage(), // <- Add this line
);
}
Sync gradle and go :)
-
Open the solution in Visual Studio for your Windows apps.
-
Right click your in the Explorer and click Add > Existing Project....
-
Navigate to .//node_modules/react-native-sensitive-info/windows/RNSensitiveInfo/RNSensitiveInfo/ and add RNSensitiveInfo.csproj.
-
Right click on your React Native Windows app under your solutions directory and click Add > Reference....
-
Check the RNSensitiveInfo you just added and press Ok
-
Open MainPage.cs in your app
using RNSqlite2;
get
{
return new List<IReactPackage>
{
new MainReactPackage(),
new RNSensitiveInfoPackage(),
};
}
As noted by by @Palisand in this issue, it's not possible to use this module with Expo, unless your project is detached. The same is true for any modules with native code, it's not an issue with react-native-sensitive-info
. You may want to try SecureStore from Expo itself.
We unified our library's methods to bring more efficiency and simplify the usability for other developers. We hope that you enjoy it. :)
isHardwareDetected()
: resolves to a boolean that indicates the detection of fingerprint hardware
hasEnrolledFingerprints()
: resolves to a boolean that indicates the enrollment status of fingerprints on the device
isSensorAvailable
: resolves to a boolean that indicates the overall availability of fingerprint sensor (a combination of the previous two methods)
setItem(key, value, options)
: You can insert data into shared preferences & keychain using this promise method.
getItem(key, options)
: This promise will get value from given key.
deleteItem(key, options)
: It will delete value from given key
getAllItems(options)
: Will retrieve all keys and values from Shared Preferences & Keychain
"Options" is a new parameter (optional) that you can pass to our methods. But what does it do? Now, you can select which keychain's service (iOS) and shared preferences's name (android) you can use. To do so:
SInfo.setItem('key1', 'value1', {
sharedPreferencesName: 'mySharedPrefs',
keychainService: 'myKeychain'});
But if you prefer to not use it, our default sharedPreferencesName is: shared_preferences and keychainService is: app. For that, use:
SInfo.setItem('key1', 'value1', {});
If you used Android's getDefaultSharedPreferences in your project the shared preference's name that you are looking for is: com.mypackage.MyApp_preferences. On the other hand if you used iOS's Keychain the default service is: app which is our default too.
When passing in touchID
and showModal
(Android only) options as true
, an Android native prompt will show up asking for user's authentication. This behavior is similar to that of iOS.
You can control strings associated with a modal prompt via strings
option:
strings: {
header: 'Sign in',
description: 'Place finger to authenticate',
hint: 'Touch',
success: 'Fingerprint recognized',
notRecognized: 'Fingerprint not recognized, try again',
cancel: 'Cancel',
cancelled: 'Authentication was cancelled', // reject error message
}
If you want to control the behaviour on android when new Fingers are enrolled or removed on the device https://developer.android.com/reference/android/security/keystore/KeyGenParameterSpec.Builder#setInvalidatedByBiometricEnrollment(boolean) on any device with API level greater than 24 (Android version >= N
). You should call during the initialization of your app to the function setInvalidatedByBiometricEnrollment
.
This will re-initialise the internal android Key generator with the flag set to keep/invalidate the credentials upon fingers change.
import SInfo from 'react-native-sensitive-info';
SInfo.setInvalidatedByBiometricEnrollment(false);
If you do not call to this function the default value is set to true
.
When passing in the touchID
option as true
, you can also set kSecAccessControl
. For example:
SInfo.setItem('key1', 'value1', {
keychainService: 'myKeychain',
kSecAccessControl: 'kSecAccessControlTouchIDCurrentSet',
sharedPreferencesName: 'mySharedPrefs',
touchID: true,
});
Note: By default kSecAccessControl
will get set to kSecAccessControlUserPresence
.
Here is a simple example:
import SInfo from 'react-native-sensitive-info';
SInfo.setItem('key1', 'value1', {
sharedPreferencesName: 'mySharedPrefs',
keychainService: 'myKeychain'
}).then((value) =>
console.log(value) //value 1
);
SInfo.setItem('key2', 'value2', {});
SInfo.getItem('key1', {
sharedPreferencesName: 'mySharedPrefs',
keychainService: 'myKeychain'}).then(value => {
console.log(value) //value1
});
SInfo.getItem('key2',{}).then(value => {
console.log(value) //value2
});
SInfo.getAllItems({
sharedPreferencesName: 'mySharedPrefs',
keychainService: 'myKeychain'}).then(values => {
console.log(values) //value1, value2
});
As jailbroken device can access your iOS Keychain/ Android shared preference and key store in plain text, it is necessary to add another layer of protection so even jailbreaking won't leak your data (like refresh_token or bank account password).
- for iOS it is implemented though Access Control. Everytime when app wants to access the protected keychain item, a prompt by iOS will show up. Only when authentication success will the app get the keychain item.
- for Android it is implemented though FingerprintManager + Keystore. Keystore has a function called
setUserAuthenticationRequired
which makes Keystore requires user authentication before getting value. However Android doesn't nicely user to scan their finger, it just throws error. Here is where FingerprintManager comes in. However (AGAIN) FingerprintManager doesn't show prompt for you, so you need to build UI yourself to let user to know that it is time to scan fingerprint.
The example in the repo shows how to use this feature and how to build some Android UI based on callbacks.
NOTE: fingerprint will only work with Android 6.0 and above.
HELP NEEDED: It will be nice if someone can build an Android native prompt to make Android touch as easy to use as iOS. Maybe we can borrow some code from google's example
If you would like to use redux-persist to store information from your Redux state into secure storage, you can use redux-persist-sensitive-storage, which provides a custom storage back-end for redux-persist that uses react-native-sensitive-info.
Pull requests are always welcome :)