├── LICENSE ├── composer.json └── src ├── Controller ├── AllowedOriginsController.php ├── AssertionControllerFactory.php ├── AssertionRequestController.php ├── AssertionResponseController.php ├── AttestationControllerFactory.php ├── AttestationRequestController.php ├── AttestationResponseController.php ├── DummyController.php └── DummyControllerFactory.php ├── CredentialOptionsBuilder ├── ProfileBasedCreationOptionsBuilder.php ├── ProfileBasedRequestOptionsBuilder.php ├── PublicKeyCredentialCreationOptionsBuilder.php └── PublicKeyCredentialRequestOptionsBuilder.php ├── DataCollector └── WebauthnCollector.php ├── DependencyInjection ├── Compiler │ ├── AttestationStatementSupportCompilerPass.php │ ├── CeremonyStepManagerFactoryCompilerPass.php │ ├── CoseAlgorithmCompilerPass.php │ ├── CounterCheckerSetterCompilerPass.php │ ├── DynamicRouteCompilerPass.php │ ├── EventDispatcherSetterCompilerPass.php │ ├── ExtensionOutputCheckerCompilerPass.php │ └── LoggerSetterCompilerPass.php ├── Configuration.php ├── Factory │ └── Security │ │ ├── WebauthnFactory.php │ │ └── WebauthnServicesFactory.php └── WebauthnExtension.php ├── Doctrine └── Type │ ├── AAGUIDDataType.php │ ├── AttestedCredentialDataType.php │ ├── Base64BinaryDataType.php │ ├── PublicKeyCredentialDescriptorType.php │ ├── SerializerTrait.php │ └── TrustPathDataType.php ├── Dto ├── PublicKeyCredentialCreationOptionsRequest.php ├── ServerPublicKeyCredentialCreationOptionsRequest.php └── ServerPublicKeyCredentialRequestOptionsRequest.php ├── Event ├── PublicKeyCredentialCreationOptionsCreatedEvent.php └── PublicKeyCredentialRequestOptionsCreatedEvent.php ├── Exception ├── HttpNotImplementedException.php ├── MissingFeatureException.php └── MissingUserEntityException.php ├── Repository ├── CanGenerateUserEntity.php ├── CanRegisterUserEntity.php ├── CanSaveCredentialSource.php ├── DoctrineCredentialSourceRepository.php ├── DummyPublicKeyCredentialSourceRepository.php ├── DummyPublicKeyCredentialUserEntityRepository.php ├── PublicKeyCredentialSourceRepositoryInterface.php └── PublicKeyCredentialUserEntityRepositoryInterface.php ├── Resources ├── config │ ├── cose.php │ ├── dev_services.php │ ├── doctrine-mapping │ │ ├── PublicKeyCredentialEntity.orm.xml │ │ ├── PublicKeyCredentialSource.orm.xml │ │ └── PublicKeyCredentialUserEntity.orm.xml │ ├── metadata_statement_supports.php │ ├── routing.php │ ├── security.php │ └── services.php └── views │ └── data_collector │ ├── tab │ ├── attestation.html.twig │ └── request.html.twig │ └── template.html.twig ├── Routing └── Loader.php ├── Security ├── Authentication │ ├── Exception │ │ ├── WebauthnAuthenticationEvent.php │ │ └── WebauthnAuthenticationEvents.php │ ├── Token │ │ └── WebauthnToken.php │ ├── WebauthnAuthenticator.php │ ├── WebauthnBadge.php │ ├── WebauthnBadgeListener.php │ └── WebauthnPassport.php ├── Authorization │ └── Voter │ │ ├── IsUserPresentVoter.php │ │ └── IsUserVerifiedVoter.php ├── Guesser │ ├── CurrentUserEntityGuesser.php │ ├── RequestBodyUserEntityGuesser.php │ └── UserEntityGuesser.php ├── Handler │ ├── CreationOptionsHandler.php │ ├── DefaultCreationOptionsHandler.php │ ├── DefaultFailureHandler.php │ ├── DefaultRequestOptionsHandler.php │ ├── DefaultSuccessHandler.php │ ├── FailureHandler.php │ ├── RequestOptionsHandler.php │ └── SuccessHandler.php ├── Http │ └── Authenticator │ │ ├── Passport │ │ └── Credentials │ │ │ └── WebauthnCredentials.php │ │ └── WebauthnAuthenticator.php ├── Storage │ ├── CacheStorage.php │ ├── Item.php │ ├── OptionsStorage.php │ └── SessionStorage.php └── WebauthnFirewallConfig.php ├── Service ├── DefaultFailureHandler.php ├── DefaultSuccessHandler.php ├── PublicKeyCredentialCreationOptionsFactory.php └── PublicKeyCredentialRequestOptionsFactory.php └── WebauthnBundle.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/Controller/AllowedOriginsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AllowedOriginsController.php -------------------------------------------------------------------------------- /src/Controller/AssertionControllerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AssertionControllerFactory.php -------------------------------------------------------------------------------- /src/Controller/AssertionRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AssertionRequestController.php -------------------------------------------------------------------------------- /src/Controller/AssertionResponseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AssertionResponseController.php -------------------------------------------------------------------------------- /src/Controller/AttestationControllerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AttestationControllerFactory.php -------------------------------------------------------------------------------- /src/Controller/AttestationRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AttestationRequestController.php -------------------------------------------------------------------------------- /src/Controller/AttestationResponseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/AttestationResponseController.php -------------------------------------------------------------------------------- /src/Controller/DummyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/DummyController.php -------------------------------------------------------------------------------- /src/Controller/DummyControllerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Controller/DummyControllerFactory.php -------------------------------------------------------------------------------- /src/CredentialOptionsBuilder/ProfileBasedCreationOptionsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/CredentialOptionsBuilder/ProfileBasedCreationOptionsBuilder.php -------------------------------------------------------------------------------- /src/CredentialOptionsBuilder/ProfileBasedRequestOptionsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/CredentialOptionsBuilder/ProfileBasedRequestOptionsBuilder.php -------------------------------------------------------------------------------- /src/CredentialOptionsBuilder/PublicKeyCredentialCreationOptionsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/CredentialOptionsBuilder/PublicKeyCredentialCreationOptionsBuilder.php -------------------------------------------------------------------------------- /src/CredentialOptionsBuilder/PublicKeyCredentialRequestOptionsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/CredentialOptionsBuilder/PublicKeyCredentialRequestOptionsBuilder.php -------------------------------------------------------------------------------- /src/DataCollector/WebauthnCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DataCollector/WebauthnCollector.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/AttestationStatementSupportCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/AttestationStatementSupportCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/CeremonyStepManagerFactoryCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/CeremonyStepManagerFactoryCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/CoseAlgorithmCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/CoseAlgorithmCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/CounterCheckerSetterCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/CounterCheckerSetterCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/DynamicRouteCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/DynamicRouteCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/EventDispatcherSetterCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/EventDispatcherSetterCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ExtensionOutputCheckerCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/ExtensionOutputCheckerCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/LoggerSetterCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Compiler/LoggerSetterCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/Factory/Security/WebauthnFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Factory/Security/WebauthnFactory.php -------------------------------------------------------------------------------- /src/DependencyInjection/Factory/Security/WebauthnServicesFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/Factory/Security/WebauthnServicesFactory.php -------------------------------------------------------------------------------- /src/DependencyInjection/WebauthnExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/DependencyInjection/WebauthnExtension.php -------------------------------------------------------------------------------- /src/Doctrine/Type/AAGUIDDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Doctrine/Type/AAGUIDDataType.php -------------------------------------------------------------------------------- /src/Doctrine/Type/AttestedCredentialDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Doctrine/Type/AttestedCredentialDataType.php -------------------------------------------------------------------------------- /src/Doctrine/Type/Base64BinaryDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Doctrine/Type/Base64BinaryDataType.php -------------------------------------------------------------------------------- /src/Doctrine/Type/PublicKeyCredentialDescriptorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Doctrine/Type/PublicKeyCredentialDescriptorType.php -------------------------------------------------------------------------------- /src/Doctrine/Type/SerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Doctrine/Type/SerializerTrait.php -------------------------------------------------------------------------------- /src/Doctrine/Type/TrustPathDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Doctrine/Type/TrustPathDataType.php -------------------------------------------------------------------------------- /src/Dto/PublicKeyCredentialCreationOptionsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Dto/PublicKeyCredentialCreationOptionsRequest.php -------------------------------------------------------------------------------- /src/Dto/ServerPublicKeyCredentialCreationOptionsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Dto/ServerPublicKeyCredentialCreationOptionsRequest.php -------------------------------------------------------------------------------- /src/Dto/ServerPublicKeyCredentialRequestOptionsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Dto/ServerPublicKeyCredentialRequestOptionsRequest.php -------------------------------------------------------------------------------- /src/Event/PublicKeyCredentialCreationOptionsCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Event/PublicKeyCredentialCreationOptionsCreatedEvent.php -------------------------------------------------------------------------------- /src/Event/PublicKeyCredentialRequestOptionsCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Event/PublicKeyCredentialRequestOptionsCreatedEvent.php -------------------------------------------------------------------------------- /src/Exception/HttpNotImplementedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Exception/HttpNotImplementedException.php -------------------------------------------------------------------------------- /src/Exception/MissingFeatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Exception/MissingFeatureException.php -------------------------------------------------------------------------------- /src/Exception/MissingUserEntityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Exception/MissingUserEntityException.php -------------------------------------------------------------------------------- /src/Repository/CanGenerateUserEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/CanGenerateUserEntity.php -------------------------------------------------------------------------------- /src/Repository/CanRegisterUserEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/CanRegisterUserEntity.php -------------------------------------------------------------------------------- /src/Repository/CanSaveCredentialSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/CanSaveCredentialSource.php -------------------------------------------------------------------------------- /src/Repository/DoctrineCredentialSourceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/DoctrineCredentialSourceRepository.php -------------------------------------------------------------------------------- /src/Repository/DummyPublicKeyCredentialSourceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/DummyPublicKeyCredentialSourceRepository.php -------------------------------------------------------------------------------- /src/Repository/DummyPublicKeyCredentialUserEntityRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/DummyPublicKeyCredentialUserEntityRepository.php -------------------------------------------------------------------------------- /src/Repository/PublicKeyCredentialSourceRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/PublicKeyCredentialSourceRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/PublicKeyCredentialUserEntityRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Repository/PublicKeyCredentialUserEntityRepositoryInterface.php -------------------------------------------------------------------------------- /src/Resources/config/cose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/cose.php -------------------------------------------------------------------------------- /src/Resources/config/dev_services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/dev_services.php -------------------------------------------------------------------------------- /src/Resources/config/doctrine-mapping/PublicKeyCredentialEntity.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/doctrine-mapping/PublicKeyCredentialEntity.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine-mapping/PublicKeyCredentialSource.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/doctrine-mapping/PublicKeyCredentialSource.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine-mapping/PublicKeyCredentialUserEntity.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/doctrine-mapping/PublicKeyCredentialUserEntity.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/metadata_statement_supports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/metadata_statement_supports.php -------------------------------------------------------------------------------- /src/Resources/config/routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/routing.php -------------------------------------------------------------------------------- /src/Resources/config/security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/security.php -------------------------------------------------------------------------------- /src/Resources/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/config/services.php -------------------------------------------------------------------------------- /src/Resources/views/data_collector/tab/attestation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/views/data_collector/tab/attestation.html.twig -------------------------------------------------------------------------------- /src/Resources/views/data_collector/tab/request.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/views/data_collector/tab/request.html.twig -------------------------------------------------------------------------------- /src/Resources/views/data_collector/template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Resources/views/data_collector/template.html.twig -------------------------------------------------------------------------------- /src/Routing/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Routing/Loader.php -------------------------------------------------------------------------------- /src/Security/Authentication/Exception/WebauthnAuthenticationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/Exception/WebauthnAuthenticationEvent.php -------------------------------------------------------------------------------- /src/Security/Authentication/Exception/WebauthnAuthenticationEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/Exception/WebauthnAuthenticationEvents.php -------------------------------------------------------------------------------- /src/Security/Authentication/Token/WebauthnToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/Token/WebauthnToken.php -------------------------------------------------------------------------------- /src/Security/Authentication/WebauthnAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/WebauthnAuthenticator.php -------------------------------------------------------------------------------- /src/Security/Authentication/WebauthnBadge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/WebauthnBadge.php -------------------------------------------------------------------------------- /src/Security/Authentication/WebauthnBadgeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/WebauthnBadgeListener.php -------------------------------------------------------------------------------- /src/Security/Authentication/WebauthnPassport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authentication/WebauthnPassport.php -------------------------------------------------------------------------------- /src/Security/Authorization/Voter/IsUserPresentVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authorization/Voter/IsUserPresentVoter.php -------------------------------------------------------------------------------- /src/Security/Authorization/Voter/IsUserVerifiedVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Authorization/Voter/IsUserVerifiedVoter.php -------------------------------------------------------------------------------- /src/Security/Guesser/CurrentUserEntityGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Guesser/CurrentUserEntityGuesser.php -------------------------------------------------------------------------------- /src/Security/Guesser/RequestBodyUserEntityGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Guesser/RequestBodyUserEntityGuesser.php -------------------------------------------------------------------------------- /src/Security/Guesser/UserEntityGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Guesser/UserEntityGuesser.php -------------------------------------------------------------------------------- /src/Security/Handler/CreationOptionsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/CreationOptionsHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/DefaultCreationOptionsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/DefaultCreationOptionsHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/DefaultFailureHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/DefaultFailureHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/DefaultRequestOptionsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/DefaultRequestOptionsHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/DefaultSuccessHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/DefaultSuccessHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/FailureHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/FailureHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/RequestOptionsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/RequestOptionsHandler.php -------------------------------------------------------------------------------- /src/Security/Handler/SuccessHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Handler/SuccessHandler.php -------------------------------------------------------------------------------- /src/Security/Http/Authenticator/Passport/Credentials/WebauthnCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Http/Authenticator/Passport/Credentials/WebauthnCredentials.php -------------------------------------------------------------------------------- /src/Security/Http/Authenticator/WebauthnAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Http/Authenticator/WebauthnAuthenticator.php -------------------------------------------------------------------------------- /src/Security/Storage/CacheStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Storage/CacheStorage.php -------------------------------------------------------------------------------- /src/Security/Storage/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Storage/Item.php -------------------------------------------------------------------------------- /src/Security/Storage/OptionsStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Storage/OptionsStorage.php -------------------------------------------------------------------------------- /src/Security/Storage/SessionStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/Storage/SessionStorage.php -------------------------------------------------------------------------------- /src/Security/WebauthnFirewallConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Security/WebauthnFirewallConfig.php -------------------------------------------------------------------------------- /src/Service/DefaultFailureHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Service/DefaultFailureHandler.php -------------------------------------------------------------------------------- /src/Service/DefaultSuccessHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Service/DefaultSuccessHandler.php -------------------------------------------------------------------------------- /src/Service/PublicKeyCredentialCreationOptionsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Service/PublicKeyCredentialCreationOptionsFactory.php -------------------------------------------------------------------------------- /src/Service/PublicKeyCredentialRequestOptionsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/Service/PublicKeyCredentialRequestOptionsFactory.php -------------------------------------------------------------------------------- /src/WebauthnBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-auth/webauthn-symfony-bundle/HEAD/src/WebauthnBundle.php --------------------------------------------------------------------------------