我有一个公钥,但是,我不确定如何将它变成 Pycryptodome 上的密钥。我一直在使用我在这里找到的这段代码
keyDER = b64decode(key64)
seq = asn1.DerSequence()
seq.decode(keyDER)
keyPub = RSA.construct((seq[0], seq[1]))
print(keyPub.encrypt('test',"Unguessable"))
但是,使用 key64 作为公钥,我得到ValueError: Unexpected DER tag
. 在 python 3.6 中使用 Pycryptodome 有更好的方法吗?