Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::*;

mod sha256;
pub use sha256::*;

#[cfg(feature="crc")] 
mod crc64;
#[cfg(feature="crc")] 
pub use crc64::*;

#[cfg(feature="crc")] 
mod crc32;
#[cfg(feature="crc")] 
pub use crc32::*;

mod sha256t;
pub use sha256t::*;