siphasher/
lib.rs

1#![cfg_attr(not(test), no_std)]
2
3#[cfg(test)]
4extern crate core;
5
6pub mod sip;
7pub mod sip128;
8
9#[cfg(test)]
10mod tests;
11
12#[cfg(test)]
13mod tests128;