actix-web-httpauth 0.8.2

HTTP authentication schemes for Actix Web
Documentation
1
2
3
4
5
6
7
8
9
//! `WWW-Authenticate` header and various auth challenges.

mod challenge;
mod header;

pub use self::{
    challenge::{basic, bearer, Challenge},
    header::WwwAuthenticate,
};