由题目得一组m,e对应不同组的n,c则可以尝试公因数攻击,对所有n进行两两对比看看有没有公因数 然后求出m
import gmpy2
from Crypto.Util.number import long_to_bytes
n1 = 20
2023-01-14