#![no_std]
#![doc = include_str!("../README.md")]
#![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"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![forbid(unsafe_code)]
#![warn(missing_docs, unreachable_pub)]
pub use digest::{self, Digest};
pub mod block_api;
mod c128;
mod c160;
mod c256;
mod c320;
digest::buffer_fixed!(
pub struct Ripemd128(block_api::Ripemd128Core);
oid: "1.3.36.3.2.2";
impl: FixedHashTraits;
);
digest::buffer_fixed!(
pub struct Ripemd160(block_api::Ripemd160Core);
oid: "1.3.36.3.2.1";
impl: FixedHashTraits;
);
digest::buffer_fixed!(
pub struct Ripemd256(block_api::Ripemd256Core);
oid: "1.3.36.3.2.3";
impl: FixedHashTraits;
);
digest::buffer_fixed!(
pub struct Ripemd320(block_api::Ripemd320Core);
impl: FixedHashTraits;
);