Enum elliptic_curve::sec1::Coordinates[][src]

pub enum Coordinates<'a, C: Curve> {
    Identity,
    Compact {
        x: &'a FieldBytes<C>,
    },
    Compressed {
        x: &'a FieldBytes<C>,
        y_is_odd: bool,
    },
    Uncompressed {
        x: &'a FieldBytes<C>,
        y: &'a FieldBytes<C>,
    },
}
Expand description

Enum representing the coordinates of either compressed or uncompressed SEC1-encoded elliptic curve points.

Variants

Identity

Identity point (a.k.a. point at infinity)

Compact

Compact curve point

Show fields

Fields of Compact

x: &'a FieldBytes<C>

x-coordinate

Compressed

Compressed curve point

Show fields

Fields of Compressed

x: &'a FieldBytes<C>

x-coordinate

y_is_odd: bool

Is the y-coordinate odd?

Uncompressed

Uncompressed curve point

Show fields

Fields of Uncompressed

x: &'a FieldBytes<C>

x-coordinate

y: &'a FieldBytes<C>

y-coordinate

Implementations

Get the tag octet needed to encode this set of Coordinates

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.