Let $p$ be a prime number with $p \equiv 3 \mod 4$, and consider the elliptic curve $$ E/\mathbb{F}_{p^2}: \quad y^2 = x^3 - x. $$ I suspect that $E(\mathbb{F}_{p^2})$ has order $(p+1)^2$ as I observed it with MAGMA (the code I used can be found below).
I found a similar-looking argument in Jyrki Lahtonen's answer here (where he dealt with the same curve over $\mathbb{F}_p$ instead of $\mathbb{F}_{p^2}$). It seems that the crucial argument there was that $-1$ is not a quadratic residue modulo $p \equiv 3 \mod 4$. However, I think $-1$ will become a square in $\mathbb{F}_{p^2}$, so the argument fails I think.
Question How can I show my claim instead?
Appendix: My MAGMA code (Output gives only "true").
L := [ x : x in [3 .. 100] | IsPrime(x) and x mod 4 eq 3];
for p in L do
K := GF(p^2);
R<x> := PolynomialRing(K);
f := x^3 - x;
E := EllipticCurve(f);
#E eq (p+1)^2;
end for;