[go: up one dir, main page]

siphasher 0.3.0

SipHash functions from rust-core < 1.13
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(not(test), no_std)]

#[cfg(test)]
extern crate core;

pub mod sip;
pub mod sip128;

#[cfg(test)]
mod tests;

#[cfg(test)]
mod tests128;