top of page

RSA KeyPair Generator

by XR_XharpRazor

P, Q, E, N=PQ, T=(P-1)(Q-1), (ED)%T=1

N = p * q

<MODULUS>

totient(N) = (p-1) * (q-1) 

<TOTIENT>

( E * D ) % totient(N) = 1 , D :

<INVERSE>

<!> proposed E does not has an inverse:D in MOD totientN

bottom of page