Ps and Qs
Challenge
1 | Ps and Qs |
Given : cipher, pub1, pub2
Load Key
1 | import Crypto.PublicKey |
Solve
I found that, they are same exponent = 65537 (0x10001) with different modulus N
Try found gcd of there N
Bingo!!
1 | from libnum import * |
1 | Ps and Qs |
Given : cipher, pub1, pub2
1 | import Crypto.PublicKey |
I found that, they are same exponent = 65537 (0x10001) with different modulus N
Try found gcd of there N
Bingo!!
1 | from libnum import * |