Type Alias elgamal::EncryptionKey

source ·
pub type EncryptionKey = P256Point;
Expand description

An Elgamal encryption key is a group element in $`\mathcal{G}$.

Aliased Type§

enum EncryptionKey {
    NonInf((P256FieldElement, P256FieldElement)),
    AtInfinity,
}

Variants§

§

NonInf((P256FieldElement, P256FieldElement))

§

AtInfinity