python 实现RSA公钥加密,私钥解密
Posted **绵绵羊**
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 实现RSA公钥加密,私钥解密相关的知识,希望对你有一定的参考价值。
from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_v1_5 as Cipher_pkcs1_v1_5 from Crypto.Signature import PKCS1_v1_5 as Signature_pkcs1_v1_5 import base64 # 私钥 private_key = ‘‘‘-----BEGIN RSA PRIVATE KEY----- 5353dfggd -----END RSA PRIVATE KEY----- ‘‘‘ # 公钥 public_key = ‘‘‘-----BEGIN PUBLIC KEY----- hfgghftetet -----END PUBLIC KEY-----‘‘‘ def rsa_encrypt(message): """校验RSA加密 使用公钥进行加密""" cipher = Cipher_pkcs1_v1_5.new(RSA.importKey(public_key)) cipher_text = base64.b64encode(cipher.encrypt(message.encode())).decode() return cipher_text def rsa_decrypt(text): """校验RSA加密 使用私钥进行解密""" cipher = Cipher_pkcs1_v1_5.new(RSA.importKey(private_key)) retval = cipher.decrypt(base64.b64decode(text), ‘ERROR‘).decode(‘utf-8‘) return retval
以上是关于python 实现RSA公钥加密,私钥解密的主要内容,如果未能解决你的问题,请参考以下文章