0

我正在尝试在 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)

tl; dr 我该如何这个处理 RSA?

4

0 回答 0