Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Redux persist storage engine that provides an encryption layer over async storag
This project provides an AES encryption layer (using a randomly generated secure key stored in keychain/keystore) over AsyncStorage for react-native projects

### To install in your project:
First install `react-native-keychain`. Then:
First install `react-native-keychain` and `@react-native-async-storage/async-storage`. Then:

```
yarn add 'https://github.com/chaudhryjunaid/redux-persist-encrypted-async-storage.git#master'
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AsyncStorage } from 'react-native';
import AsyncStorage from '@react-native-async-storage/async-storage';
import * as Keychain from 'react-native-keychain';
import CryptoJSCore from 'crypto-js/core';
import AES from 'crypto-js/aes';
Expand Down
Loading