[][src]Enum signatory::test_vector::TestVectorAlgorithm

pub enum TestVectorAlgorithm {
    NistP256,
    NistP384,
    Secp256k1,
    Ed25519,
}

Algorithms for which we have test vectors

Variants

NistP256

NIST P-256 (a.k.a. prime256v1, secp256r1) elliptic curve

NistP384

NIST P-384 (a.k.a. secp384r1) elliptic curve

Secp256k1

secp256k1 elliptic curve

Ed25519

"edwards25519" elliptic curve

Trait Implementations

impl Debug for TestVectorAlgorithm[src]

impl PartialEq<TestVectorAlgorithm> for TestVectorAlgorithm[src]

impl Eq for TestVectorAlgorithm[src]

impl Hash for TestVectorAlgorithm[src]

impl Copy for TestVectorAlgorithm[src]

impl Clone for TestVectorAlgorithm[src]

Auto Trait Implementations

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> Same<T> for T

type Output = T

Should always be Self