Type Alias p521::AffinePoint

source ·
pub type AffinePoint = AffinePoint<NistP521>;
Available on crate feature arithmetic only.
Expand description

Elliptic curve point in affine coordinates.

Aliased Type§

struct AffinePoint { /* private fields */ }

Trait Implementations§

source§

impl VerifyPrimitive<NistP521> for AffinePoint

Available on crate features ecdsa-core and ecdsa only.
source§

fn verify_prehashed( &self, z: &GenericArray<u8, <C as Curve>::FieldBytesSize>, sig: &Signature<C> ) -> Result<(), Error>

Verify the prehashed message against the provided ECDSA signature. Read more
source§

fn verify_digest<D>( &self, msg_digest: D, sig: &Signature<C> ) -> Result<(), Error>
where D: FixedOutput<OutputSize = <C as Curve>::FieldBytesSize>,

Available on crate feature digest only.
Verify message digest against the provided signature.