/*
 * Copyright 2014 Red Hat, Inc.
 *
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  and Apache License v2.0 which accompanies this distribution.
 *
 *  The Eclipse Public License is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  The Apache License v2.0 is available at
 *  http://www.opensource.org/licenses/apache2.0.php
 *
 *  You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.ext.web.handler;

import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Handler;
import io.vertx.ext.auth.webauthn.WebAuthn;
import io.vertx.ext.web.Route;
import io.vertx.ext.web.RoutingContext;
import io.vertx.ext.web.handler.impl.WebAuthnHandlerImpl;

An auth handler that provides FIDO2 WebAuthN Relay Party support.
Author:Paulo Lopes
/** * An auth handler that provides FIDO2 WebAuthN Relay Party support. * * @author Paulo Lopes */
@VertxGen public interface WebAuthnHandler extends Handler<RoutingContext> {
Create a WebAuthN auth handler. This handler expects at least the response callback to be installed.
Returns:the auth handler
/** * Create a WebAuthN auth handler. This handler expects at least the response callback to be installed. * * @return the auth handler */
static WebAuthnHandler create(WebAuthn webAuthn) { return new WebAuthnHandlerImpl(webAuthn); }
The callback route to create registration attestations. Usually this route is
/webauthn/register
Params:
  • route – the route where credential get options are generated.
Returns:fluent self.
/** * The callback route to create registration attestations. Usually this route is <pre>/webauthn/register</pre> * * @param route the route where credential get options are generated. * @return fluent self. */
@Fluent WebAuthnHandler setupCredentialsCreateCallback(Route route);
The callback route to create login attestations. Usually this route is
/webauthn/login
Params:
  • route – the route where credential get options are generated.
Returns:fluent self.
/** * The callback route to create login attestations. Usually this route is <pre>/webauthn/login</pre> * * @param route the route where credential get options are generated. * @return fluent self. */
@Fluent WebAuthnHandler setupCredentialsGetCallback(Route route);
The callback route to verify attestations and assertions. Usually this route is
/webauthn/response
Params:
  • route – the route where assertions and attestations are verified.
Returns:fluent self.
/** * The callback route to verify attestations and assertions. Usually this route is <pre>/webauthn/response</pre> * * @param route the route where assertions and attestations are verified. * @return fluent self. */
@Fluent WebAuthnHandler setupCallback(Route route);
Set the Origin to be validated by the webauthn object.
Params:
  • origin – - an HTTP Origin
Returns:fluent self
/** * Set the Origin to be validated by the webauthn object. * * @param origin - an HTTP Origin * @return fluent self */
@Fluent WebAuthnHandler setOrigin(String origin); }