Class RSAClientAssertionSigner

java.lang.Object
com.auth0.client.auth.RSAClientAssertionSigner
All Implemented Interfaces:
ClientAssertionSigner

public class RSAClientAssertionSigner extends Object implements ClientAssertionSigner
An implementation of ClientAssertionSigner for RSA-signed client assertions.
  • Constructor Details

  • Method Details

    • createSignedClientAssertion

      public String createSignedClientAssertion(String issuer, String audience, String subject)
      Description copied from interface: ClientAssertionSigner
      Creates a signed JWT representing a client assertion used to authenticate to the Authentication API.
      Specified by:
      createSignedClientAssertion in interface ClientAssertionSigner
      Parameters:
      issuer - the Issuer. This MUST contain the client_id of the OAuth Client.
      audience - the audience that identifies the Authorization Server as an intended audience.
      subject - the Subject. This MUST contain the client_id of the OAuth Client.
      Returns:
      a signed JWT representing the client assertion.