Token Binding
The Easy Way
<?php
use Webauthn\Server;
use Webauthn\TokenBinding\TokenBindingNotSupportedHandler;
$server = new Server(
$rpEntity
$publicKeyCredentialSourceRepository
);
// Set your handler here
$server->setTokenBindingHandler(new TokenBindingNotSupportedHandler());The Hard Way
The Symfony Way
Last updated
Was this helpful?