ascon-hash256 0.1.0

Implementation of Ascon-Hash256
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, Digest};

/// Block-level types
pub mod block_api;

digest::buffer_fixed!(
    /// Ascon-Hash256 hasher
    pub struct AsconHash256(block_api::AsconHash256Core);
    impl: FixedHashTraits;
);