invert(e,phi) # 解密指数d m=pow(c,d,n) # m = c^d mod n print(m) #71#加密 m->cdef c(): e=13 p=7 q=11 m=71 #文字 n=p*q phi=(p-1)*(q-1) #求φ(n) d=gmpy2.invert(e,phi) #解密指数d c=pow(m,e,n) # c= m^e mod n print(c) #15 import gmpy...
defd():e=13p=7q=11c=15# 密文 n=p*q phi=(p-1)*(q-1)#求φ(n)d=gmpy2.invert(e,phi)# 解密指数d m=pow(c,d,n)# m=c^d mod nprint(m)#71#加密 m->c defc():e=13p=7q=11m=71#文字 n=p*q phi=(p-1)*(q-1)#求φ(n)d=gmpy2.invert(e,phi)#解密指数d c=pow(m...