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

Finish deprecation of all U2F-specific classes #36

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Deprecate U2F response formats
  • Loading branch information
Firehed committed Oct 27, 2021
commit 8f362f8dbae7e48c1dc1573fa9317cefbe2e987b
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