rcrypto 0.2.0

A rust cryptography library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! CMAC(Block Cipher-based Message Authentication Code)  
//! SP 800-38B  


mod cmac;
mod const_tables;

pub use cmac::CMAC;

#[cfg(test)]
mod cmac_test;