loginflow 0.1.1

Browser-driven login discovery, form drive, MFA, and session capture into authjar
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Post-login session capture into authjar and scald wire types.

pub mod headers;
pub mod jwt;
pub mod session;

pub use headers::*;
pub use jwt::*;
#[cfg(feature = "browser")]
pub use session::capture_from_document_cookies;
pub use session::{
    capture_from_auth_session, capture_from_http_headers, CapturedSession, ScaldAuth,
};