hawk 1.0.5

Hawk Implementation for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error_chain! {
    errors {
        HeaderParseError {
            description("Unparseable Hawk header")
        }
    }

    foreign_links {
        Io(::std::io::Error);
        Decode(::base64::DecodeError);
    }
}