digest-io 0.1.0

std::io-compatibility wrappers for traits defined in the digest crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![forbid(unsafe_code)]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
    html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
)]
#![warn(missing_debug_implementations)]

mod io_wrapper;
mod reader;
mod writer;

pub use io_wrapper::IoWrapper;
pub use reader::HashReader;
pub use writer::HashWriter;