-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.js
85 lines (76 loc) · 2.29 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { AsyncStorage } from 'react-native';
import * as Keychain from 'react-native-keychain';
import CryptoJSCore from 'crypto-js/core';
import AES from 'crypto-js/aes';
import uuidv4 from 'uuid/v4';
let encryptionKey = null;
export default ({ service = 'com.redux-persist-encrypted-async-storage' } = {}) => {
const noop = () => null;
const getEncryptionKey = async () => {
if (encryptionKey == null) {
let { password: encryptionKeyValue } = await Keychain.getGenericPassword({ service });
if (!encryptionKeyValue) {
encryptionKeyValue = uuidv4();
await Keychain.setGenericPassword('data', encryptionKeyValue, {
service,
accessible: Keychain.ACCESSIBLE.ALWAYS_THIS_DEVICE_ONLY,
});
}
encryptionKey = encryptionKeyValue;
}
return encryptionKey;
};
return {
async getItem(key, callback = noop) {
try {
let decryptedString;
const encryptedValue = await AsyncStorage.getItem(key);
try {
const secretKey = await getEncryptionKey();
const bytes = AES.decrypt(encryptedValue, secretKey);
decryptedString = bytes.toString(CryptoJSCore.enc.Utf8);
} catch (err) {
throw new Error(`Could not decrypt state: ${err.message}`);
}
callback(null, decryptedString);
return decryptedString;
} catch (error) {
callback(error);
throw error;
}
},
async setItem(key, value, callback = noop) {
try {
let encryptedValue = value;
if (value) {
const secretKey = await getEncryptionKey();
encryptedValue = AES.encrypt(value, secretKey).toString();
}
await AsyncStorage.setItem(key, encryptedValue);
callback(null);
} catch (error) {
callback(error);
throw error;
}
},
async removeItem(key, callback = noop) {
try {
await AsyncStorage.removeItem(key);
callback(null);
} catch (error) {
callback(error);
throw error;
}
},
async getAllKeys(callback = noop) {
try {
const result = await AsyncStorage.getAllItems();
callback(null, result);
return result;
} catch (error) {
callback(error);
throw error;
}
},
};
};