welcome
rsa-of-ctf-2 rsa-of-ctf-2
8.gcd(n1,n2)Sometimes,n1 n2 are too big to factor.you can try gcd(n1,n2) def gcd(a, b): if a < b: a, b =
2018-06-03
rsa_of_ctf_1 rsa_of_ctf_1
IN CTF,Rsa often appears.BUT in ctf it’s usually with Fixed method to solve it.Today,I put all code to here. 1.have p,q
2018-06-01
rsa_combinations rsa_combinations
15号做的,算是迁移博客后的第一篇吧 #! /usr/bin/python2.7 from Crypto.Util.number import size,bytes_to_long,getStrongPrime from itertool
2018-05-17