awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 repositorios

Awesome GitHub RepositoriesPluggable Authentication Handlers

Modular handler classes for implementing diverse security schemes and credential management.

Distinct from Connection Authentication Mechanisms: None of the candidates cover the architectural decoupling of client-side authentication handlers.

Explore 5 awesome GitHub repositories matching security & cryptography · Pluggable Authentication Handlers. Refine with filters or upvote what's useful.

Awesome Pluggable Authentication Handlers GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • restsharp/restsharpAvatar de restsharp

    restsharp/RestSharp

    9,826Ver en GitHub↗

    RestSharp is a .NET HTTP client library designed for interacting with RESTful web services. It provides a high-level request wrapper and a dedicated REST API client to manage endpoints, headers, and query parameters. The library includes a serialization mechanism that automatically converts objects to and from JSON or XML formats for API payloads. It also features a system for managing API credentials and security tokens to ensure authorized access to protected remote resources. The toolkit covers broad capabilities for external web service integration, including generic type-based deseriali

    Decouples credential management from request logic using separate handler classes for various security schemes.

    C#
    Ver en GitHub↗9,826
  • mongodb/mongo-go-driverAvatar de mongodb

    mongodb/mongo-go-driver

    8,506Ver en GitHub↗

    The mongo-go-driver is a Go library for building applications that integrate with a MongoDB document store. It enables the storage and retrieval of flexible document data by providing a bridge between Go backends and the database. The driver implements specialized capabilities for semantic vector search, allowing the handling and execution of high-dimensional vector data for similarity-based retrieval. It also supports full-text search via linguistic analysis and programmatic search index management. The project covers a broad range of database operations, including document-based CRUD, bulk

    Provides modular authentication handlers to support diverse identity verification mechanisms like IAM and OIDC.

    Godatabasedrivergo
    Ver en GitHub↗8,506
  • warp-tech/warpgateAvatar de warp-tech

    warp-tech/warpgate

    6,578Ver en GitHub↗

    Warpgate is an SSH bastion host that authenticates users and proxies connections to internal servers while recording all session activity. It is distributed as a single standalone binary with no runtime dependencies, stores configuration and session data in a local SQLite database by default, and supports role-based access control to determine which users can reach which targets. The bastion verifies identity through a configurable chain of authentication methods including passwords, one-time codes, single sign-on, and time-limited ticket tokens. It captures and stores SSH session activity as

    Verifies identity through a configurable chain of providers including passwords, OTP, SSO, and ticket tokens before granting access.

    Rustbastionbastion-hosthttps
    Ver en GitHub↗6,578
  • spec-first/connexionAvatar de spec-first

    spec-first/connexion

    4,600Ver en GitHub↗

    Connexion es un framework web de Python centrado en especificaciones diseñado para derivar el comportamiento del servidor y la lógica de validación directamente de un contrato de API predefinido. Permite el desarrollo de servicios web utilizando una especificación OpenAPI para manejar automáticamente el enrutamiento, la validación de solicitudes y la serialización de respuestas. El framework se distingue al actuar como un validador de solicitudes OpenAPI y servidor mock. Puede simular el comportamiento de la API sirviendo respuestas de ejemplo basadas en esquemas de especificación, permitiendo el desarrollo frontend y la creación de prototipos antes de que se complete una implementación backend. Además, aloja una interfaz de documentación de API interactiva, proporcionando una consola para que los usuarios visualicen y prueben endpoints. El proyecto cubre una amplia gama de capacidades, incluyendo registro automático de rutas, inyección de parámetros y aplicación de seguridad basada en definiciones de contrato. También proporciona herramientas para la validación de esquemas tanto de solicitudes como de respuestas, así como la capacidad de mapear excepciones de la aplicación a respuestas de error estandarizadas legibles por máquina.

    Supports the implementation of custom authentication schemes via pluggable handler classes.

    Pythonapi-firstapi-restflask-extensions
    Ver en GitHub↗4,600
  • twmb/franz-goAvatar de twmb

    twmb/franz-go

    2,700Ver en GitHub↗

    franz-go is a low-level Go client library and wire protocol implementation for producing, consuming, and administering Kafka clusters. It functions as a zero-allocation network driver that utilizes a direct TCP communication layer to handle requests and responses. The project integrates a schema registry client for encoding and decoding structured data. It provides a programmatic interface for cluster administration, including the management of topics, access control lists, and broker configurations. The library covers data consumption through consumer groups, message production with transac

    Provides a pluggable architecture for authentication handlers to decouple security schemes from protocol logic.

    Goclientgogolang
    Ver en GitHub↗2,700
  1. Home
  2. Security & Cryptography
  3. Pluggable Authentication Handlers

Explorar subetiquetas

  • Authentication ChainsVerifies identity through a configurable sequence of providers before granting access to any target. **Distinct from Pluggable Authentication Handlers:** Distinct from Pluggable Authentication Handlers: focuses on the ordered chain of multiple providers rather than individual handler implementations.