Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oidc additional client auth types #58708

Merged
merged 10 commits into from
Sep 14, 2020

Commits on Jun 25, 2020

  1. wip

    jkakavas committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    3360fa1 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2020

  1. OIDC: Enable additional client auth types

    The OpenID Connect specification defines a number of ways for a
    client (RP) to authenticate itself to the OP when accessing the
    Token Endpoint. We currently only support `client_secret_basic`.
    
    This change introduces support for 2 additional authentication
    methods, namely `client_secret_post` (where the client credentials
    are passed in the body of the POST request to the OP) and
    `client_secret_jwt` where the client constructs a JWT and signs
    it using the the client secret as a key.
    
    Support for the above, and especially `client_secret_jwt` in our
    integration tests meant that the OP we use ( Connect2id server )
    should be able to validate the JWT that we send it from the RP.
    Since we run the OP in docker and it listens on an ephemeral port
    we would have no way of knowing the port so that we can configure
    the ES running via the testcluster to know the "correct" Token
    Endpoint, and even if we did, this would not be the Token Endpoint
    URL that the OP would think it listens on. To alleviate this, we
    run an ES single node cluster in docker, alongside the OP so that
    we can configured it with the correct hostname and port within
    the docker network.
    jkakavas committed Jun 29, 2020
    Configuration menu
    Copy the full SHA
    7050759 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    45d9a74 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2020

  1. Configuration menu
    Copy the full SHA
    0467b14 View commit details
    Browse the repository at this point in the history
  2. address feedback

    jkakavas committed Jun 30, 2020
    Configuration menu
    Copy the full SHA
    e1e5537 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2020

  1. Configuration menu
    Copy the full SHA
    e66c6e5 View commit details
    Browse the repository at this point in the history
  2. address feedback

    jkakavas committed Aug 19, 2020
    Configuration menu
    Copy the full SHA
    49cd438 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2020

  1. Configuration menu
    Copy the full SHA
    0636079 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Configuration menu
    Copy the full SHA
    52a4c80 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1dcd6f3 View commit details
    Browse the repository at this point in the history