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
//! Adversarial and malformed inputs for WebAuthn endpoints.

// Assuming the main agent will wire up `pub mod webauthn` in `discover/mod.rs`
use loginflow::discover::webauthn::discover_webauthn_challenge;

#[test]
fn discover_empty_html() {
    let result = discover_webauthn_challenge("https://example.com/login", "");
    assert!(result.is_err());
    // Error is DiscoverError::Parse which maps to parsing failed
}