crypto/
lib.rs

1// Copyright 2020 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4#![cfg_attr(not(feature = "std"), no_std)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7#[macro_use]
8mod macros;
9
10pub mod ciphers;
11pub mod encoding;
12pub mod error;
13pub mod hashes;
14pub mod keys;
15pub mod macs;
16pub mod signatures;
17pub mod utils;
18
19pub use self::error::{Error, Result};
20
21#[macro_use]
22#[allow(unused_imports)]
23extern crate alloc;