Skip to main content

EcdsaCurve

Trait 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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§