rust-bitcoin-unsafe-fast/bitcoin/src/crypto/mod.rs

12 lines
235 B
Rust

// Rust Bitcoin Library - Written by the rust-bitcoin developers.
// SPDX-License-Identifier: CC0-1.0
//! Cryptography
//!
//! Cryptography related functionality: keys and signatures.
//!
pub mod ecdsa;
pub mod key;
pub mod schnorr;