Pretty stable but the API may still change slightly until the 1.0 release.
This library aims to implement the relying party server of the WebAuthn specification in PHP. Important goals are:
- Implement the level 1 WebAuthn specification
- Good quality, secure and maintainable code
- Easy to use for the end-user
Installation via composer:
composer require madwizard/webauthn
-
PHP 7.2
- FIDO conformant library
- Attestation types:
- FIDO U2F
- Packed
- TPM
- Android SafetyNet
- Android Key
- Apple
- None
- Optional 'unsupported' type to handle future types
- Metadata service support
- Validating metadata
- Extensions:
- appid
The library is still in development so documentation is limited. The general pattern to follow is:
- Implement
CredentialStoreInterface
(you will needUserCredential
or your own implementation ofUserCredentialInterface
) - Create an instance of
RelyingParty
and use theServerBuilder
class to build a server object:
$server = (new ServerBuilder())
->setRelyingParty($rp)
->setCredentialStore($store)
->build();
- Use
startRegistration
/finishRegistration
to register credentials. Be sure to store the temporaryAttestationContext
server side! - and
startAuthentication
/finishAuthentication
to authenticate. Be sure to store the temporaryAssertionContext
server side!