andymatuschak / orbit

Experimental spaced repetition platform for exploring ideas in memory augmentation and programmable attention
https://withorbit.com
Other
1.71k stars 54 forks source link

Consider using react-native-quick-crypto #284

Open mrousavy opened 2 years ago

mrousavy commented 2 years ago

Hey!

I noticed this repo uses react-native-crypto, which itself uses crypto-browserify under the hood. crypto-browserify is a JS-based implementation for crypto, which is slower than Margelo's react-native-quick-crypto, since this uses C++ (OpenSSL) under the hood.

If you want to replace react-native-crypto with the faster react-native-quick-crypto, I'm happy to help out or answer questions.

andymatuschak commented 2 years ago

Thanks; this is helpful. I'd like to eventually move all my dependencies to JSI…

andymatuschak commented 1 year ago

(Note to self: it appears that we're no longer actually using crypto in app—we can probably just remove the dependency.)