I am working on my project that uses elgamal elliptic curve. I know when the elgamal ec encrypt by following steps
- Represent the message m as a point M in E(Fp).
- Select k ∈R [1,n−1].
- Compute C1 = kP.
- Compute C2 = M +kQ.
- Return(C1,C2).
Where Q is the intended recipient’s public key, P is base point. My qusetion at number one. how represent m as a point. Is point represent one character or represent group of characters.