码迷,mamicode.com
首页 > 编程语言 > 详细

node加密rsa公钥和python解密私钥的问题

时间:2021-03-29 11:41:58      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:syn   message   scheme   string   etop   sync   none   decode   sch   

node和python默认的rsa加密方式是不一样,要调整一下。

node代码:


const fs = require(‘fs‘);
const NodeRSA = require(‘node-rsa‘);
const path = require(‘path‘).resolve();
 
const publicKey = fs.readFileSync(`${path}\\rsa_public_key.pem`, ‘utf-8‘)
const privateKey = fs.readFileSync(`${path}\\rsa_private_key.pem`, ‘utf-8‘)

const text = ‘Hello RSA!‘;
 
// 公钥加密
const _publicKey = new NodeRSA();
_publicKey.setOptions({ encryptionScheme: ‘pkcs1‘ }); // 务必要加这行代码
_publicKey.importKey(publicKey, "pkcs1-public");
const public_encrypted = _publicKey.encrypt(text);
console.log(‘public_encrypted: ‘, public_encrypted.toString(‘base64‘));
 
//附赠私钥解密代码
const _privatKey = new NodeRSA(privateKey);
_privatKey.setOptions({ encryptionScheme: ‘pkcs1‘ });
const private_decrypted = _privatKey.decrypt(public_encrypted);
console.log(‘private_decrypted: ‘, private_decrypted.toString(‘utf-8‘));

python方面私钥解密代码代码:


from Crypto.Cipher import PKCS1_v1_5
from Crypto.Cipher import PKCS1_OAEP
from Crypto.PublicKey import RSA
from Crypto.Hash import SHA
import base64
 
ciphertext =‘‘ // 这里把之前加密出来的base64字符串放这里
 
key = RSA.importKey(open(‘rsa_private_key.pem‘).read())
cipher = PKCS1_v1_5.new(key)
 
message = cipher.decrypt(base64.b64decode(ciphertext), None)
print(message) // 输出,完事

node加密rsa公钥和python解密私钥的问题

标签:syn   message   scheme   string   etop   sync   none   decode   sch   

原文地址:https://www.cnblogs.com/JohannaFeng/p/14582817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!