So I am trying to solve some exercises about pseudorandom permutations.
Assume that keyed-permuation $E_k(x)$ is a pseudorandom permutation, where $|x|=|k|=n$. Using $E_k(x)$, we construct an encryption sheme as follows.
$$ c=m\oplus E_k(0^n)\\ m=c\oplus E_k(0^n) $$ where $k$ is a random key.
The task is to show if this sheme either provides OT-IND-CPA or IND-CPA.
So if I understand pseudorandom permutations correctly this sheme should not provide any of those two. My argument would be that no mather what key $k$ one uses the output of $E_k(0^n)$ will always be $0^n$ since every permutation of $0^n$ is $0^n$ and therefore every message $m$ gets encrypted as its plaintext: $c=m$ which obiously does not provide IND-CPA or OT-IND-CPA.
Am I missing something or is it really that easy?