Type Definition p384::AffinePoint
source · pub type AffinePoint = AffinePoint<NistP384>;
Available on crate feature
arithmetic
only.Expand description
Elliptic curve point in affine coordinates.
Trait Implementations§
source§impl VerifyPrimitive<NistP384> for AffinePoint
Available on crate features ecdsa-core
and ecdsa
only.
impl VerifyPrimitive<NistP384> 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 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>,
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.