signature 0.2.0

Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)
Documentation
1
2
3
4
5
6
7
//! Crate-local prelude (for alloc-dependent features like `Vec`)

#[cfg(all(feature = "alloc", not(feature = "std")))]
pub use alloc::vec::Vec;

#[cfg(feature = "std")]
pub use std::vec::Vec;