react-native-openpgp icon indicating copy to clipboard operation
react-native-openpgp copied to clipboard

OpenPGP.js adaptation for React-Native

Results 7 react-native-openpgp issues
Sort by recently updated
recently updated
newest added

While upgrading my react-native app from 0.52 to 0.57 , it is showing me the below warning. Please help me to resolve this warning. And please provide a solution that...

Thanks for the awesome package and your effort to bring this to `react-native`. There is the following issue with this package, On iOS when `debugger` mode is enabled the app...

Stack trace from android monitor: ``` E/AndroidRuntime: FATAL EXCEPTION: OkHttp Dispatcher Process: com.tomnash.nlimited.debug, PID: 17698 java.lang.IllegalStateException: Expected a name but was NUMBER at android.util.JsonReader.nextName(JsonReader.java:390) at com.facebook.react.devsupport.JSDebuggerWebSocketClient.onMessage(JSDebuggerWebSocketClient.java:196) at okhttp3.internal.ws.RealWebSocket$1.onMessage(RealWebSocket.java:62) at okhttp3.internal.ws.WebSocketReader.readMessageFrame(WebSocketReader.java:242)...

After attempting to import this module like so: import * as openpgp from 'react-native-openpgp' and running `react-native run-ios` with `Remote JS Debugging` enabled, my iOS app doesn't load, specifically not...

**Dependencies**: expo = 20.0.0 react = 16.0.0-alpha.12 react-native = 0.47.0 react-native-openpgp = 1.0.3 ``` var options, encrypted; options = { data: 'Hello, World!', // input as String passwords: ['secret stuff']...

I have a trouble with performance during generation of key 2048 bit. This process can spend from 3 minutes to 14-15. Therefore I would like to know, what exactly spend...

**Encryption** Current version ``` options = { ... privateKeys: openpgp.readArmoredKey(privkey).keys, // for signing (optional) ... }; ``` but should be ``` options = { ... privateKeys: openpgp.readArmoredKey(privkey).keys .map(key => openpgp.decryptKey({...