I'm trying to decrypt an RSA encryption given that
c: 8533139361076999596208540806559574687666062896040360148742851107661304651861689
n: 769457290801263793712740792519696786147248001937382943813345728685422050738403253
e: 65537
I plan on finding:
φ(n) = φ(769457290801263793712740792519696786147248001937382943813345728685422050738403253)
and then using a modular multiplicative inverse calculator to find:
65537 * D = 1mod(φ(n)) – with the value I find above
Once I have D, I plan to decrypt C by using the formula:
Decrypted Message = C^D(modN)
However, I can't seem to find any suitable calculator for calculations as large as these. Could someone please recommend a calculator which is able to perform such large calculations? Also, if my theory is wrong, please correct me :)
This comes from the picoCTF question : https://play.picoctf.org/practice/challenge/162?category=2&page=1 Mind your P's and Q's