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
//! Login form discovery from HTML.

pub mod html_form;
pub mod oauth;
pub mod webauthn;

pub use html_form::{
    discover_best_login_form, discover_login_forms_in_html, DiscoveredForm, FormMethod,
};
pub use oauth::{discover_best_oauth_entry, discover_oauth_entry_points, DiscoveredOAuth};
pub use webauthn::*;