Class WebAuthnHandler

  • All Implemented Interfaces:
    io.vertx.core.Handler<RoutingContext>, AuthenticationHandler

    public class WebAuthnHandler
    extends Object
    implements AuthenticationHandler, io.vertx.core.Handler<RoutingContext>
    An auth handler that provides FIDO2 WebAuthN Relay Party support.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • WebAuthnHandler

        public WebAuthnHandler​(io.vertx.ext.web.handler.WebAuthnHandler delegate)
      • 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
      • newInstance

        public static WebAuthnHandler newInstance​(io.vertx.ext.web.handler.WebAuthnHandler arg)