-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement faster ECDH operation so encryption of offers takes less time #1258
Comments
We are using this library: https://github.com/margelo/react-native-quick-crypto/tree/main Here is the list of implementation coverage: https://github.com/margelo/react-native-quick-crypto/blob/0.x/docs/implementation-coverage.md Our app uses ECIES encryption to encrypt offers. Currently our biggest bottleneck when encrypting offers is generating ECDH shared secret. Meaning that we need the following methods to be implemented: Curves that need to be supported: Also the implementation of ECDH is already done in Node: https://github.com/nodejs/node/blob/main/src/crypto/crypto_dh.cc Also, there are tests inside the app and in TS: https://github.com/vexl-it/vexl-next/blob/main/packages/cryptography/src/operations/eciesLegacy.test.ts |
No description provided.
The text was updated successfully, but these errors were encountered: