RSA加密

最后一篇,最近真的被这个加密整麻了,每次都不一样

记录一下RSA加密,用到了登录接口中密码加密

示例代码

from Crypto.PublicKey import RSA
from Crypto.Cipher import PKCS1_v1_5
import base64


def rsa_encryptor(rsa_pub_key, encryptor_str):
    """
    RSA加密
    :param rsa_pub_key: RSA公钥
    :param encryptor_str:需要加密的字符串
    :return:加密后的字符串
    """
    # 将RSA公钥进行Base64解码,并导入为RSA密钥
    key = RSA.importKey(base64.b64decode(rsa_pub_key))

    # 创建一个PKCS1_v1_5加密器
    cipher = PKCS1_v1_5.new(key)

    # 进行数据RSA加密
    encrypted_data = cipher.encrypt(encryptor_str.encode('utf-8'))

    # 对加密后的数据进行Base64编码
    encrypted_str = base64.b64encode(encrypted_data).decode('utf-8')

    return encrypted_str

 

posted @ 2024-06-03 20:45  CAI_11  阅读(21)  评论(0)    收藏  举报