Trait ethers::signers::yubihsm::ecdsa::sec1::ToEncodedPoint[][src]

pub trait ToEncodedPoint<C> where
    C: Curve,
    <<<C as Curve>::UInt as ArrayEncoding>::ByteSize as Add<<<C as Curve>::UInt as ArrayEncoding>::ByteSize>>::Output: Add<UInt<UTerm, B1>>,
    <<<C as Curve>::UInt as ArrayEncoding>::ByteSize as Add<<<C as Curve>::UInt as ArrayEncoding>::ByteSize>>::Output: ArrayLength<u8>,
    <<<<C as Curve>::UInt as ArrayEncoding>::ByteSize as Add<<<C as Curve>::UInt as ArrayEncoding>::ByteSize>>::Output as Add<UInt<UTerm, B1>>>::Output: ArrayLength<u8>, 
{ fn to_encoded_point(&self, compress: bool) -> EncodedPoint<C>; }
Expand description

Trait for serializing a value to a SEC1 encoded curve point.

This is intended for use with the AffinePoint type for a given elliptic curve.

Required methods

Serialize this value as a SEC1 EncodedPoint, optionally applying point compression.

Implementors