1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate base64;
#[macro_use]
extern crate hyperx;
#[macro_use]
extern crate log;
extern crate uuid;
use uuid::Uuid;

mod srd_scheme;
mod www_authenticate;

pub use srd_scheme::SrdAuthorizationScheme;
pub use www_authenticate::AuthenticateScheme;
pub use www_authenticate::WWWAuthenticate;

header! { (AuthId, "Auth-ID") => [Uuid] }