我想用 PyCrypto 在 python 中加密一些数据。
但是使用时出现错误key = RSA.importKey(pubkey)
:
RSA key format is not supported
密钥是通过以下方式生成的:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mycert.key -out mycert.pem
代码是:
def encrypt(data):
pubkey = open('mycert.pem').read()
key = RSA.importKey(pubkey)
cipher = PKCS1_OAEP.new(key)
return cipher.encrypt(data)