(content)
| 55 | }; |
| 56 | |
| 57 | export const stringToUint8Array = (content) => |
| 58 | Uint8Array.from(content.split(",").map((str) => parseInt(str))); |
| 59 | |
| 60 | export const getMySecretKey = async () => { |
| 61 | const keyString = await AsyncStorage.getItem(PRIVATE_KEY); |
no outgoing calls
no test coverage detected