pub type AffinePoint = AffinePoint<NistP256>;Expand description
Elliptic curve point in affine coordinates.
Aliased Type§
pub struct AffinePoint { /* private fields */ }Trait Implementations§
Source§impl VerifyPrimitive<NistP256> for AffinePoint
 
impl VerifyPrimitive<NistP256> for AffinePoint
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