pub type AffinePoint = AffinePoint<NistP256>;
Expand description
Elliptic curve point in affine coordinates.
Aliased Type§
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