Skip to main content

EccOperation

Trait EccOperation 

Source
pub trait EccOperation: Sealed {
    const VERIFIES_POINT: bool;
}
Expand description

Marks an ECC operation.

Required Associated Constants§

Source

const VERIFIES_POINT: bool

Whether the operation verifies that the input point is on the curve.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl EccOperation for AffinePointMultiplication

Available on crate feature unstable only.
Source§

const VERIFIES_POINT: bool = false

Source§

impl EccOperation for AffinePointVerification

Available on crate feature unstable only.
Source§

const VERIFIES_POINT: bool = true

Source§

impl EccOperation for AffinePointVerificationAndJacobianPointMultiplication

Available on crate feature unstable only.
Source§

const VERIFIES_POINT: bool = true

Source§

impl EccOperation for AffinePointVerificationAndMultiplication

Available on crate feature unstable only.
Source§

const VERIFIES_POINT: bool = true

Source§

impl EccOperation for JacobianPointMultiplication

Available on crate feature unstable only.
Source§

const VERIFIES_POINT: bool = false

Source§

impl EccOperation for JacobianPointVerification

Available on crate feature unstable only.
Source§

const VERIFIES_POINT: bool = true