📌  相关文章
📜  改用模块 Crypto.Cipher.PKCS1_OAEP - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:54.340000             🧑  作者: Mango

代码示例1
from Crypto.Cipher import PKCS1_OAEP

encryptor = PKCS1_OAEP.new(publickey)
encrypted = encryptor.encrypt(b'encrypt this message')