"Determine $d$ as $d^{-1} \equiv e \bmod \phi(n)$, i.e., $d$ is the multiplicative inverse of $e \bmod \phi(n)$." (number $5$).
I'm looking at this, and i'm not sure what the $\equiv$ means in this instance? I know the rest of the values, but what does $\equiv$ mean right now?
Thanks in advance!
$a^{-1}$ is the general notation for the multiplicative inverse of $a$, which is the element $b$ such that $ab = 1$. You have surely encountered this in $\mathbf{R}$, for example $2^{-1} = 1/2$ because $2\times (1/2) = 1$.
It's the same idea here, except that we do not use the standard equality, but congruence modulo $\phi(n)$. So, say I take $p = 11$, $q = 13$, this gives $n = 143$ and $\phi(n) = 120$. If I take $e = 7$, then $d = 7^{-1} = 103$ because $103\times 7 = 721$ and $721\equiv 1 \bmod{120}$.