pub trait EcdsaCurve: Curve<FieldBytesSize: Add<Output: ArraySize<ArrayType<u8>: Copy>>> + PrimeCurve {
const NORMALIZE_S: bool;
}Expand description
Marker trait for elliptic curves intended for use with ECDSA.
Required Associated Constants§
Sourceconst NORMALIZE_S: bool
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".