loginflow 0.1.1

Browser-driven login discovery, form drive, MFA, and session capture into authjar
Documentation
1
2
3
4
5
6
7
use loginflow::capture::jwt::Jwt;

#[test]
fn decode_invalid_json() {
    let token = format!("header.{}.signature", "bm90X2pzb24"); // "not_json"
    assert!(Jwt::decode(&token).is_none());
}