name (required) : the name of the user. You may avoid to use the user email
id (optional) : the library will create an uuid for it if not set
displayName (optional) : if not set, the library use the name
icon (optional) : must be an image base64 encoded
The username can be composed of any displayable characters, including emojis. Username "😝🥰😔" is perfectly valid.
Developers should not add rules that prevent users from choosing the username they want.
For privacy reasons, it is not recommended using the e-mail as username.
pubKeyCredParams
You have to list the signg algorithms you want to use for your application.
You must give the list in your preference ordrer. Your device will then take the first one that it cans handle with. Example :
$webauthn->pubKeyCredParams->add('EDDSA');
$webauthn->pubKeyCredParams->add('ES256');
$webauthn->pubKeyCredParams->add('RS512');
$webauthn->pubKeyCredParams->add('RS256');
// OR, this is the same thing
$webauthn->pubKeyCredParams->add(-8);
$webauthn->pubKeyCredParams->add(-7);
$webauthn->pubKeyCredParams->add(-259);
$webauthn->pubKeyCredParams->add(-257);
// Another method, with all parameters
$webauthn->pubKeyCredParams->add('EDDSA', 'public-key');
$webauthn->pubKeyCredParams->add('ES256', 'public-key');
$webauthn->pubKeyCredParams->add('RS512', 'public-key');
$webauthn->pubKeyCredParams->add('RS256', 'public-key');
Then, the parameters are :
alg (required) : the algorithm you want to use (string or integer)
type (optional) : the type of key. By default public-key
To have the list of algorithms supported by the library, use pubKeyCredParams::getAlgList():
If no alg is given, the library use the default : ES256 and RS256.
authenticatorSelection
Now, you will defined how you will converse with the device. You have to set :
You don't have to defined the requireResidentKey ; the library does the job with your inputs.
userVerification
Three possible options :
required
discouraged
preferred
Default value : preferred
$webauthn->userVerification->required();
// OR
$webauthn->userVerification->discouraged();
// OR
$webauthn->userVerification->preferred();
residentKey
Three possible options :
required
discouraged
preferred
Default value : preferred
$webauthn->residentKey->required();
// OR
$webauthn->residentKey->discouraged();
// OR
$webauthn->residentKey->preferred();
authenticatorAttachment
Thee possible options :
all
cross_platform
platform
Default value : all
$webauthn->authenticatorAttachment->all();
// OR
$webauthn->authenticatorAttachment->cross_platform();
// OR
$webauthn->authenticatorAttachment->platform();
attestation
Four possible options :
none
indirect
direct
entreprise
Default value : none
$webauthn->attestation->none();
// OR
$webauthn->attestation->indirect();
// OR
$webauthn->attestation->direct();
// OR
$webauthn->attestation->enterprise();
excludeCredentials
You want to avoid some devices. For example, to not authorize a user to use the same devices he used to do a previous registration.
You may want the user informations without parsing this json to send to the client. You can get it by two ways, it will be seen in the of registration process.