(no title)
alexkus | 12 years ago
d (the private key) is:-
d = e^-1 mod ((p-1)(q-1))
To work this modular inverse out you use the extended Euclidean algorithm.This is why you need to know the factorisation of n=(p*q). You can't compute d (the private key) with just the composite n.
cryptbe|12 years ago
benmmurphy|12 years ago
dogsky|12 years ago