1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![no_std]
extern crate crypto_ops;
extern crate generic_array;
extern crate byte_tools;
extern crate digest;

mod mac;
pub use mac::{Mac, MacResult};

mod hmac;
pub use hmac::{Hmac};