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