1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-21 11:06:04 +02:00

re-export digest and crypto_mac

This commit is contained in:
Jack O'Connor 2020-02-04 10:02:46 -05:00
parent 0c663aa8ac
commit 24071db346
2 changed files with 7 additions and 3 deletions

View File

@ -58,7 +58,7 @@ pub mod portable;
#[doc(hidden)]
pub mod sse41;
mod traits;
pub mod traits;
use arrayref::{array_mut_ref, array_ref};
use arrayvec::{ArrayString, ArrayVec};

View File

@ -1,5 +1,9 @@
//! Implementations for commonly used traits like `digest::Digest` and
//! `crypto_mac::Mac`.
//! Implementations of commonly used traits like
//! [`digest::Digest`](https://crates.io/crates/digest) and
//! [`crypto_mac::Mac`](https://crates.io/crates/crypto-mac).
pub use crypto_mac;
pub use digest;
use crate::{Hasher, OutputReader};
use digest::generic_array::{