[ 'name' => env('WEBAUTHN_NAME', config('app.name')), 'id' => env('WEBAUTHN_ID'), ], /* |-------------------------------------------------------------------------- | Challenge configuration |-------------------------------------------------------------------------- | | When making challenges your application needs to push at least 16 bytes | of randomness. Since we need to later check them, we'll also store the | bytes for a small amount of time inside this current request session. | */ 'challenge' => [ 'bytes' => 16, 'timeout' => 60, 'key' => '_webauthn', ], ];