pub type CurveKey<C> = PairwiseAuthKey<ScalarAsExtension<C>, Point<C>>;Expand description
PairwiseAuthKey for a single curve point.
Aliased Type§
#[repr(C)]pub struct CurveKey<C> {
pub alpha: Arc<FieldElement<<C as Curve>::Scalar>>,
pub beta: Point<C>,
}Fields§
§alpha: Arc<FieldElement<<C as Curve>::Scalar>>§beta: Point<C>