bitcoin/crypto/
mod.rs

1// SPDX-License-Identifier: CC0-1.0
2
3//! Cryptography
4//!
5//! Cryptography related functionality: keys and signatures.
6//!
7
8pub mod ecdsa;
9pub mod key;
10pub mod sighash;
11// Contents re-exported in `bitcoin::taproot`.
12pub(crate) mod taproot;