pub trait CurveAlgorithm {
    // Required method
    fn asymmetric_algorithm() -> Algorithm;
}
Expand description

Mappings from ECDSA curves to their corresponding asymmetric algorithm

Required Methods§

source

fn asymmetric_algorithm() -> Algorithm

YubiHSM asymmetric algorithm for this elliptic curve

Implementors§

source§

impl CurveAlgorithm for NistP256

source§

impl CurveAlgorithm for NistP384

source§

impl CurveAlgorithm for Secp256k1

Available on crate feature secp256k1 only.