solid_pod_rs/auth/mod.rs
1//! Authentication modules.
2//!
3//! Phase 1 ships NIP-98 structural verification (tag layout,
4//! URL/method/payload match, timestamp tolerance). Schnorr signature
5//! verification is the `nip98-schnorr` feature on [`nip98`]. Sprint 11
6//! adds [`self_signed`] — the Controlled Identifier verifier abstraction
7//! (row 152) used to fan out across did:key, NIP-98, did:nostr, etc.
8
9pub mod nip98;
10pub mod self_signed;