LOADING

Big and small

网络安全

Big and small

解密:

from gmpy2.gmpy2 import iroot
from Crypto.Util.number import *
n = 
e = 
c = 
for i in range(100000):
	t = iroot(i * n + c, e)	
	if t[1] == 1:
		print(long_to_bytes(t[0]))
		break