ascon-xof128 0.1.0

Implementation of Ascon-XOF128 and Ascon-СXOF128
Documentation
#![no_std]
#![doc = include_str!("../README.md")]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
    html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, unreachable_pub)]
#![forbid(unsafe_code)]

pub use digest::{self, CustomizedInit, ExtendableOutput, Update, XofReader};

mod consts;
mod cxof;
mod reader;
mod xof;

pub use cxof::AsconCxof128;
pub use reader::AsconXof128Reader;
pub use xof::AsconXof128;