Trait ecdsa::EcdsaCurve

source ·
pub trait EcdsaCurve: PrimeCurve {
    const NORMALIZE_S: bool;
}
Expand description

Marker trait for elliptic curves intended for use with ECDSA.

Required Associated Constants§

source

const NORMALIZE_S: bool

Does this curve use low-S normalized signatures?

This is typically false. See Signature::normalize_s for more information.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl EcdsaCurve for MockCurve

Available on crate feature dev only.
source§

const NORMALIZE_S: bool = false

Implementors§