RSA猛攻
RSAe,phi不互素题目 1234567891011121314151617181920212223from Crypto.Util.number import *#from shin import flagm=bytes_to_long(b'HDCTF{******}')e=65537p=getPrime(256)q=getPrime(512)r=getPrime(512)n=p*q*rP=pow(p,2,n)Q=pow(q,2,n)c=pow(m,e,n)print(f"P = {P}")print(f"Q = {Q}")print(f"n = {n}")print(f"c = {c}")'''P = 87602103743628486546804702193099622506978083349430360494505231392992894513...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment





