//! # ECDSA
//!
//! A formally verified implementation of ECDSA on P-curves.
//!
//! For now only P-256 is supported.
/// The hash algorithm used for signing or verifying.
pub type DigestAlgorithm = Algorithm;
/// The number of iteration for rejection sampling.
pub const RAND_LIMIT: usize = 100;