solidsn2004
solidsn2004

Reputation: 315

RSA cryptosystem

Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003, n=3783667, phi=3779776, e= 61

i got stuck finding d could anyone help me to figure it out?

Setting up an RSA cryptosystem

Upvotes: 3

Views: 375

Answers (1)

luvieere
luvieere

Reputation: 37494

Here's the algo, step by step, including finding d.
m from the article is your Φ(n).
Now, you try to find a d = (1 + nm) / e, working through values of n until an integer solution for e is found.

Edit: Here you'll find a more detailed explanation of the whole algorithm.

Upvotes: 8

Related Questions