Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Deprecate U2F response formats
Browse files Browse the repository at this point in the history
  • Loading branch information
Firehed committed Oct 27, 2021
1 parent 6906d77 commit 8f362f8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Server::generateSignRequest(RegistrationInterface)
- Server::generateSignRequests(RegistrationInterface[])
- RegisterRequest
- RegisterResponse (Replaced by WebAuthn/RegistrationResponse)
- SignRequest
- SignResponse (Replaced by WebAuthn/LoginResponse)


## [1.2.0] - 2021-10-26
Expand Down
3 changes: 3 additions & 0 deletions src/RegisterResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

use Firehed\U2F\InvalidDataException as IDE;

/**
* @deprecated U2F support is being removed. Migrate to WebAuthn flows.
*/
class RegisterResponse implements RegistrationResponseInterface
{
use ResponseTrait;
Expand Down
3 changes: 3 additions & 0 deletions src/SignResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

use Firehed\U2F\InvalidDataException as IDE;

/**
* @deprecated U2F support is being removed. Migrate to WebAuthn flows.
*/
class SignResponse implements LoginResponseInterface
{
use ResponseTrait;
Expand Down

0 comments on commit 8f362f8

Please sign in to comment.