pub type Ciphertext = (P256Point, P256Point);Expand description
An Elgamal encryption of a message M under public key PK is a pair of group elements (c0, c1) where
c0is the group generator multiplied by a randomizerrc1is the result of multiplying the target public encryption key the same randomizerrand adding the result to the messageMthat is to be encrypted.