Just started learning about RSA cryptography so forgive me if I made any mistakes or misunderstandings.
M = 20 be the message that i want to encrypt
N = 5*7 , p = 5 and q = 7
φ(N) = (5-1)(7-1) = 24
Let e = 5 as it is a coprime of 24
To encrypt the message, E = M^e mod(N)
This works out to E = 20^5mod35 , which equates to 20 as well
I have tried other values of e but the ciphertext is always 20. Is there anything wrong with having the plaintext and ciphertext being the same?