Struct openssl::ec::PointConversionForm [] [src]

pub struct PointConversionForm(_);

Compressed or Uncompressed conversion

Conversion from the binary value of the point on the curve is performed in one of compressed, uncompressed, or hybrid conversions. The default is compressed, except for binary curves.

Further documentation is available in the X9.62 standard.

Methods

impl PointConversionForm
[src]

COMPRESSED: PointConversionForm = PointConversionForm(ffi::point_conversion_form_t::POINT_CONVERSION_COMPRESSED)

Compressed conversion from point value.

UNCOMPRESSED: PointConversionForm = PointConversionForm(ffi::point_conversion_form_t::POINT_CONVERSION_UNCOMPRESSED)

Uncompressed conversion from point value.

HYBRID: PointConversionForm = PointConversionForm(ffi::point_conversion_form_t::POINT_CONVERSION_HYBRID)

Performs both compressed and uncompressed conversions.

Trait Implementations

impl Copy for PointConversionForm
[src]

impl Clone for PointConversionForm
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations