pub type AffinePoint = AffinePoint<NistP521>;Available on crate feature
arithmetic only.Expand description
Elliptic curve point in affine coordinates.
Aliased Type§
pub struct AffinePoint { /* private fields */ }Trait Implementations§
Source§impl VerifyPrimitive<NistP521> for AffinePoint
Available on crate features ecdsa-core and ecdsa only.
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>
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