我正在尝试在 Python 中实现Mixnet。考虑链接的 wiki 页面中的示例 -使用 ' 的公钥A
加密消息,A
然后使用 ' 的公钥加密生成的密文以及B
' 的地址M
。
当我运行尝试执行上述操作的代码时,我得到ValueError: Plaintext is too long.
了这是因为我没有B
以正确的方式附加地址并且我超过了 RSA 的 1024 大小。如何使用 RSA 完成此任务?
from Crypto.PublicKey import RSA
from Crypto.Cipher import PKCS1_OAEP
from Crypto import Random
def create_rsa():
random_generator = Random.new().read
key = RSA.generate(1024, random_generator) #generate pub and priv key
publickey = key.publickey() # pub key export for exchange
return key, publickey
def encrypt(message, key):
ciphertext = PKCS1_OAEP.new(key)
return ciphertext.encrypt(message)
message = "chocolate milk"
prA, A = create_rsa()
prB, B = create_rsa()
prM, M = create_rsa()
# A sealing stuff
Kb = encrypt(message, B)
KbAddress = Kb + "B"
Km = encrypt(KbAddress, M)