我需要修复基于 PyCryptodome 的客户端/服务器交互。
客户端生成其 RSA 密钥并将公共密钥发送到服务器:
n_bin_size = 1024
e = 65537
key = RSA.generate(n_bin_size, None, e) # RsaKey object
public_key = key.publickey().exportKey('PEM')
print(str(len(public_key)))
conn.send(public_key)
服务器获取私钥并使用它来加密会话密钥:
data = conn.recv(271).decode()
pub_key = RSA.import_key(data)
session_key = b"key1key1key1key1"
cipher_rsa = PKCS1_OAEP.new(pub_key)
try:
enc_session_key = cipher_rsa.encrypt(session_key)
except (AttributeError):
print("Attribute error..")
session_key 实际上是正确加密的,但总是会引发 AttributeError 异常,并带有以下消息:
Traceback (most recent call last):
File "Bob.py", line 33, in <module>
enc_session_key = cipher_rsa.encrypt(session_key)
File "/usr/local/lib/python3.7/site-packages/Cryptodome/Cipher/PKCS1_OAEP.py", line 107, in encrypt
modBits = Cryptodome.Util.number.size(self._key.n)
AttributeError: 'int' object has no attribute 'n'
有可能解决这个问题吗?
更新:有一个类似的问题,在:
AES 会话密钥的 RSA 解密失败,出现“AttributeError:“bytes”对象没有属性“n”
但是这个问题的答案并不能解决我的问题。当然,如果我使用“完整”RsaKey 对象而不是公钥 RsaKey 对象,则不会引发异常,但我认为将“完整”RsaKey 对象发送到服务器是错误的,不是吗?