0

I understand that if the same message is sent to 3 people with $e=3$ that even with different public keys, the message can be decoded using the Chinese Remainder Theorem.

I have tried to figure out the steps to do so, but I am unable to actually lay it out even using small numbers. How would one decrypt a message $m$ = 10, for example with $n_1=6$, $n_2=35$, and $n_3=143$, with $e=3$?

newm
  • 3
  • 3

1 Answers1

1

We have the three cipher texts $m^3\equiv c_1\equiv 4\pmod{6}$, $m^3\equiv c_2\equiv 20\pmod{35}$ and $m^3\equiv c_3\equiv 142\pmod{143}$. An application of the Chinese remainder theorem tells us that $m^3\equiv 1000\pmod{30030}$, but because $m$ is less than $\root 3\of{30030}$ we know $m^3=1000$. A regular cube root now recovers $m=10$.

Daniel S
  • 23,716
  • 1
  • 29
  • 67