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

Improper key description in Readme file

Open RajatSatashiya opened this issue 2 years ago • 0 comments

This is the current description of the library: "A native implementation of RSA key generation and encryption/decryption, sign/verify. Keychain implementation Implementation is in PKCS1"

This however is wrong because although PKCS #1 is being generated for android, the key being generated for iOS devices is PKCS#8. Now, rather than changing the readme, you should update your code to generate PKCS #8 key for android devices as it is the industry standard and easy to verify from backend (JAVA, Node.js, etc...)

RajatSatashiya avatar Aug 19 '23 08:08 RajatSatashiya