Struct elliptic_curve::dev::MockCurve[][src]

pub struct MockCurve;
This is supported on crate feature dev only.

Mock elliptic curve type useful for writing tests which require a concrete curve type.

Note: this type is roughly modeled off of NIST P-256, but does not provide an actual cure arithmetic implementation.

Trait Implementations

impl AlgorithmParameters for MockCurve[src]

const OID: ObjectIdentifier[src]

This is supported on crate feature pkcs8 only.

OID for NIST P-256

impl Clone for MockCurve[src]

impl Curve for MockCurve[src]

impl Curve for MockCurve[src]

type FieldSize = U32

Size of this curve's field in bytes, i.e. the number of bytes needed to serialize a field element. Read more

impl Debug for MockCurve[src]

impl Default for MockCurve[src]

impl Eq for MockCurve[src]

impl FromDigest<MockCurve> for Scalar[src]

impl FromEncodedPoint<MockCurve> for AffinePoint[src]

impl FromEncodedPoint<MockCurve> for ProjectivePoint[src]

impl Ord for MockCurve[src]

impl PartialEq<MockCurve> for MockCurve[src]

impl PartialOrd<MockCurve> for MockCurve[src]

impl ProjectiveArithmetic for MockCurve[src]

type ProjectivePoint = ProjectivePoint

This is supported on crate feature arithmetic only.

Elliptic curve point in projective coordinates.

impl StructuralEq for MockCurve[src]

impl StructuralPartialEq for MockCurve[src]

impl ToEncodedPoint<MockCurve> for AffinePoint[src]

impl ToEncodedPoint<MockCurve> for ProjectivePoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.