inout/
lib.rs

1//! Collection of custom reference types for code generic over in-place and
2//! buffer-to-buffer modes of operation.
3
4#![no_std]
5#![doc(
6    html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
7    html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
8)]
9#![cfg_attr(docsrs, feature(doc_cfg))]
10#![warn(missing_docs)]
11
12#[cfg(feature = "block-padding")]
13pub use block_padding;
14
15mod errors;
16mod inout;
17mod inout_buf;
18mod reserved;
19
20pub use crate::{errors::*, inout::*, inout_buf::*, reserved::*};