to understand RSA better I am doing a little calculation by hand, this is what I got:
Choosing:
$p = 3\\ q = 5\\ n = 15\\ \varphi(p\cdot q) = 2 \cdot 4 = 8\\ e > \varphi(n) \implies e = 13\\ e \cdot d = 1 \pmod 8\\ 13 \cdot d = 1 \pmod 8\\ (13 \cdot 5) \mod 8 = 1$
So there has to be $m \le n$ and I choose $m = 7$
Encryption:
$c = m^e \mod n\\ c = 7^{13} \mod 15\\ c = 7$
And if I decrypt it's nice coming back to 7. But it looks a bit weird to me having $m = c$ but I don't find what I should be doing wrong.. ?