mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-04-16 06:36:26 +02:00
29 lines
596 B
Markdown
29 lines
596 B
Markdown
# `security`
|
|
|
|
Here's the reference for the authentication helpers provided by the `security` module.
|
|
|
|
You can import them directly from `fastapi_toolsets.security`:
|
|
|
|
```python
|
|
from fastapi_toolsets.security import (
|
|
AuthSource,
|
|
BearerTokenAuth,
|
|
CookieAuth,
|
|
OAuth2Auth,
|
|
OpenIDAuth,
|
|
MultiAuth,
|
|
)
|
|
```
|
|
|
|
## ::: fastapi_toolsets.security.AuthSource
|
|
|
|
## ::: fastapi_toolsets.security.BearerTokenAuth
|
|
|
|
## ::: fastapi_toolsets.security.CookieAuth
|
|
|
|
## ::: fastapi_toolsets.security.OAuth2Auth
|
|
|
|
## ::: fastapi_toolsets.security.OpenIDAuth
|
|
|
|
## ::: fastapi_toolsets.security.MultiAuth
|