With Flex, you have a minimal configuration file installed through a Flex Recipe. You must set the repositories you have just created. You also have to modify the environment variables Relying_PARTY_ID and Relying_PARTY_NAME.
You may also need to adjust other parameters.
If you don’t use Flex, hereafter an example of configuration file:
config/packages/webauthn.yaml
webauthn:# logger: null # PSR-3 compatible logging service credential_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialSourceRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS!
user_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialUserEntityRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS!
token_binding_support_handler: 'Webauthn\TokenBinding\IgnoreTokenBindingHandler' # We ignore the token binding instructions by default
creation_profiles:# Authenticator registration profilesdefault:# Unique name of the profilerp:# Relying Party informationname:'%env(Relying_PARTY_NAME)%'# CHANGE THIS! or create the corresponding env variableid:'%env(Relying_PARTY_ID)%'# Please adapt the env file with the correct relying party ID or set null# icon: null # Secured image (data:// scheme)# challenge_length: 32# timeout: 60000# authenticator_selection_criteria:# attachment_mode: !php/const Webauthn\AuthenticatorSelectionCriteria::AUTHENTICATOR_ATTACHMENT_NO_PREFERENCE
# require_resident_key: false# user_verification: !php/const Webauthn\AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_PREFERRED
# extensions:# loc: true# public_key_credential_parameters: # You should not change this list# - !php/const Cose\Algorithms::COSE_ALGORITHM_EdDSA #Order is important. Preferred algorithms go first# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES256# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES256K# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES384# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES512# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS256# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS384# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS512# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS256# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS384# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS512# attestation_conveyance: !php/const Webauthn\PublicKeyCredentialCreationOptions::ATTESTATION_CONVEYANCE_PREFERENCE_NONE
request_profiles:# Authentication profilesdefault:# Unique name of the profilerp_id:'%env(Relying_PARTY_ID)%'# Please adapt the env file with the correct relying party ID or set null# challenge_length: 32# timeout: 60000# user_verification: !php/const Webauthn\AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_PREFERRED
# extensions:# loc: true# metadata:# enabled: false# mds_repository: 'App\Repository\MetadataStatementRepository'# status_report_repository: 'App\Repository\StatusReportRepository'# certificate_chain_checker: 'App\Security\CertificateChainChecker'
Creation Profiles
If you don't create the creation_profiles section, a default profile is set.
Relying Party (rp)
The relying Party corresponds to your application. Please refer to this page for more information.
The parameter id is optional but highly recommended.
Challenge Length
By default, the length of the challenge is 32 bytes. You may need to select a smaller or higher length. This length can be configured for each profile:
For v4.0+, the timeout is set to null. The values recommended by the specification are as follow:
If the user verification is discouraged, timeout should be between 30 and 180 seconds
If the user verification is preferred or required, the range is 300 to 600 seconds (5 to 10 minutes)
These behaviors are not necessarily followed by the web browsers.
Authenticator Selection Criteria
This set of options allows you to select authenticators depending on their capabilities. The values are described in the advanced concepts of the protocol.
This option indicates the algorithms allowed for your application. By default, a large list of algorithms is defined, but you can add custom algorithms or reduce the list.
The order is important. Preferred algorithms go first.
It is not recommended changing the default list unless you exactly know what you are doing.
You can set as many extensions as you want in the profile. Please also refer to this page for more information.
The example below is totally fictive. Some extensions are defined in the specification but the support depends on the authenticators, on the browsers and on the relying parties (your applications).
app/config/webauthn.yaml
webauthn:creation_profiles:acme:rp:name:'ACME Webauthn Server'extensions:loc:truetxAuthSimple:'Please add your new authenticator'
Request Profiles
If you don't create the creation_profiles section, a default profile is set.
The parameters for the request profiles (i.e. the authentication) are very similar to the creation profiles. The only difference is that you don’t need all the detail of the Relying Party, but only its ID (i.e. its domain).
Please note that all parameters are optional. The following configuration is perfectly valid. However, and as mentioned above, the parameter id is highly recommended.