Skip to main content

ascon_xof128/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3#![doc(
4    html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
5    html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
6)]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8#![warn(missing_docs, unreachable_pub)]
9#![forbid(unsafe_code)]
10
11pub use digest::{self, CustomizedInit, ExtendableOutput, Update, XofReader};
12
13mod consts;
14mod cxof;
15mod reader;
16mod xof;
17
18pub use cxof::AsconCxof128;
19pub use reader::AsconXof128Reader;
20pub use xof::AsconXof128;