pub type EncodedPoint = EncodedPoint<Secp256k1>;
Expand description
SEC1-encoded secp256k1 (K-256) curve point.
Aliased Type§
pub struct EncodedPoint { /* private fields */ }
Trait Implementations§
Source§impl From<&Secp256k1Point> for EncodedPoint
impl From<&Secp256k1Point> for EncodedPoint
Source§fn from(affine_point: &Secp256k1Point) -> EncodedPoint
fn from(affine_point: &Secp256k1Point) -> EncodedPoint
Converts to this type from the input type.
Source§impl From<Secp256k1Point> for EncodedPoint
impl From<Secp256k1Point> for EncodedPoint
Source§fn from(affine_point: Secp256k1Point) -> EncodedPoint
fn from(affine_point: Secp256k1Point) -> EncodedPoint
Converts to this type from the input type.