mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-08-05 08:04:08 +00:00
* feat: add security module * feat(security): add oauth helpers * docs: add authentication example * fix: cleanup + simplify * docs: update module and reference * fix: multiple security bugs + remove example for now * feat: use async_lru for caching * fix: rename nonce by state_token
9 lines
266 B
Python
9 lines
266 B
Python
"""Built-in authentication source implementations."""
|
|
|
|
from .header import APIKeyHeaderAuth
|
|
from .bearer import BearerTokenAuth
|
|
from .cookie import CookieAuth
|
|
from .multi import MultiAuth
|
|
|
|
__all__ = ["APIKeyHeaderAuth", "BearerTokenAuth", "CookieAuth", "MultiAuth"]
|