openssl生成rsa密钥对

私钥生成 openssl genrsa -out rsa_1024_priv.pem 1024
公钥生成 openssl rsa -pubout -in rsa_1024_priv.pem -out rsa_1024_pub.pem

jQuery使用rsa密钥可以用jsencrypt,github地址:https://github.com/travist/jsencrypt
主要功能代码:

//用公钥加密
var encrypt = new JSEncrypt();
encrypt.setPublicKey(public_key);
var encrypted = encrypt.encrypt(msg);

// 私钥解密 Decrypt with the private key...
var decrypt = new JSEncrypt();
decrypt.setPrivateKey(private_key);
var uncrypted = decrypt.decrypt(encrypted);
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐