mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-30 23:02:50 +00:00
37 lines
705 B
Python
37 lines
705 B
Python
"""A2A authentication schemas."""
|
|
|
|
from crewai_a2a.auth.client_schemes import (
|
|
APIKeyAuth,
|
|
AuthScheme,
|
|
BearerTokenAuth,
|
|
ClientAuthScheme,
|
|
HTTPBasicAuth,
|
|
HTTPDigestAuth,
|
|
OAuth2AuthorizationCode,
|
|
OAuth2ClientCredentials,
|
|
TLSConfig,
|
|
)
|
|
from crewai_a2a.auth.server_schemes import (
|
|
AuthenticatedUser,
|
|
OIDCAuth,
|
|
ServerAuthScheme,
|
|
SimpleTokenAuth,
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
"APIKeyAuth",
|
|
"AuthScheme",
|
|
"AuthenticatedUser",
|
|
"BearerTokenAuth",
|
|
"ClientAuthScheme",
|
|
"HTTPBasicAuth",
|
|
"HTTPDigestAuth",
|
|
"OAuth2AuthorizationCode",
|
|
"OAuth2ClientCredentials",
|
|
"OIDCAuth",
|
|
"ServerAuthScheme",
|
|
"SimpleTokenAuth",
|
|
"TLSConfig",
|
|
]
|