python公钥解密原理?
你好,你这个是非对称加密算法,利用公钥加密然后用私钥解密。目前用的多是Rsa和椭圆加密算法,目前爬虫上面用的比较多都是Rsa算法。下面是python的rsa加密代码,你可以参考一下 from Crypto.Cipher import PKCS1_v1_5 as Cipher_pkcs1_v1_5 #rsa加密,通常对加密结果进行base64编码 def encrypt(public_key, message): cipher = Cipher_pkcs1_v1_5.new(public_key) cipher_text = base64.b64encode(cipher.encrypt(message)) return cipher_text
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有