crypto/signatures/mod.rs
1// Copyright 2020 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4#[cfg(feature = "ternary_signatures")]
5#[cfg_attr(docsrs, doc(cfg(feature = "ternary_signatures")))]
6pub mod ternary;
7
8#[cfg(feature = "ed25519")]
9#[cfg_attr(docsrs, doc(cfg(feature = "ed25519")))]
10pub mod ed25519;
11
12#[cfg(feature = "secp256k1")]
13#[cfg_attr(docsrs, doc(cfg(feature = "secp256k1")))]
14pub mod secp256k1_ecdsa;