actix-web-httpauth 0.8.2

HTTP authentication schemes for Actix Web
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `Authorization` header and various auth schemes.

mod errors;
mod header;
mod scheme;

pub use self::{
    errors::ParseError,
    header::Authorization,
    scheme::{basic::Basic, bearer::Bearer, Scheme},
};