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

pub enum TestVectorAlgorithm {
    NISTP256,
    Secp256k1,
    Ed25519,
}

Algorithms for which we have test vectors

Variants

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

secp256k1 elliptic curve

"edwards25519" elliptic curve

Trait Implementations

impl Copy for TestVectorAlgorithm
[src]

impl Clone for TestVectorAlgorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestVectorAlgorithm
[src]

Formats the value using the given formatter. Read more

impl Eq for TestVectorAlgorithm
[src]

impl PartialEq for TestVectorAlgorithm
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for TestVectorAlgorithm
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations