http_content_digest/
lib.rs

1mod base64;
2mod digest;
3pub mod errors;
4
5pub use self::digest::*;
6
7pub mod body {
8    use bytes::Bytes;
9    use http_body_util::combinators::BoxBody;
10    use crate::errors::DigestError;
11    
12    pub type Body = BoxBody<Bytes, DigestError>;
13}