GithubHelp home page GithubHelp logo

auth-mux's Introduction

auth-mux

auth-mux is an authentication multiplexer, its job is to accept many different authentication schemes and return a validation result which can optionally be used to issue new credentials using a different authentication scheme. It relies on being able to take an authentication request and return either an error message or a standard set of identity claims.

Use cases

  • Transforming credentials from m issuers to a common authentication scheme
  • Transforming credentials from some authentication scheme to the n different schemes supported by the systems that you run
  • Supporting any of the m x n combinations above
  • Securerly reissuing credentials while ensuring that the original m issuers cannot issue conflicting credentials
  • Forking this repo and implementing a single interface to allow a non-standard authentication scheme to place nicely with the other systems that you run

Design

Authentication schemes are supported by implementing the Input or Output interface. An Input must implement a handler that takes an HTTP request and returns the Validation type which represents a validation result. An Output must implement a handler that takes this Validation type and returns an HTTP response.

These standard interfaces allow any Input and Output combination to be composed. The HTTP server automatically creates a handler for each combination with path /:input/:output. This allows the caller to use the HTTP path to select the authentication schemes, forming a multiplexer for the Input and a demultiplexer for the Output.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.