reifydb_auth/method/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Copyright (c) 2026 ReifyDB
3
4//! Authentication method implementations. Each method is self-contained - it owns its credential format,
5//! verification logic, and challenge state - and registers with the `registry/` so the service can pick the
6//! right one for an incoming request. Adding a new method (a new IDP, a new key type) means writing one of these
7//! modules and registering it; the rest of the auth surface is method-agnostic.
8
9pub mod password;
10pub mod solana;
11pub mod token;