Node.js 库,用于在 RSA 密钥格式之间进行转换并获取有关密钥的信息。 不需要 OpenSSL。 检测输入格式类型,因此您不需要指定甚至不需要知道 RSA 密钥的存储格式。 Quickstart 安装: npm install rsa-key 使用示例: varRSAKey=require('rsa-key');varkeyInAnyFormat=/* your RSA key in any supported format, in...
import{RSA}from'react-native-rsa-native';letmessage="my secret message";RSA.generateKeys(4096)// set key size.then(keys=>{console.log('4096 private:',keys.private);// the private keyconsole.log('4096 public:',keys.public);// the public keyRSA.encrypt(message,keys.public).then(encodedM...