Class WebAuthnHandler

    • Constructor Detail

      • WebAuthnHandler

        public WebAuthnHandler​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • create

        public static WebAuthnHandler create​(WebAuthn webAuthn)
        Create a WebAuthN auth handler. This handler expects at least the response callback to be installed.
        Parameters:
        webAuthn -
        Returns:
        the auth handler
      • setupCredentialsCreateCallback

        public WebAuthnHandler setupCredentialsCreateCallback​(Route route)
        The callback route to create registration attestations. Usually this route is
        /webauthn/register
        Parameters:
        route - the route where credential get options are generated.
        Returns:
        fluent self.
      • setupCredentialsGetCallback

        public WebAuthnHandler setupCredentialsGetCallback​(Route route)
        The callback route to create login attestations. Usually this route is
        /webauthn/login
        Parameters:
        route - the route where credential get options are generated.
        Returns:
        fluent self.
      • setupCallback

        public WebAuthnHandler setupCallback​(Route route)
        The callback route to verify attestations and assertions. Usually this route is
        /webauthn/response
        Parameters:
        route - the route where assertions and attestations are verified.
        Returns:
        fluent self.
      • setOrigin

        public WebAuthnHandler setOrigin​(String origin)
        Set the Origin to be validated by the webauthn object.
        Parameters:
        origin - - an HTTP Origin
        Returns:
        fluent self