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
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 tests for old APIs
  • Loading branch information
Firehed committed Oct 27, 2021
commit 1507f2bb787c7415a99564cb67ab37df0c9e771c
9 changes: 9 additions & 0 deletions tests/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ public function testDisableCAVerificationReturnsSelf(): void
);
}

/**
* @deprecated
*/
public function testGenerateRegisterRequest(): void
{
$req = $this->server->generateRegisterRequest();
Expand All @@ -76,6 +79,9 @@ public function testGenerateRegisterRequest(): void
);
}

/**
* @deprecated
*/
public function testGenerateSignRequest(): void
{
$kh = \random_bytes(16);
Expand Down Expand Up @@ -104,6 +110,9 @@ public function testGenerateSignRequest(): void
);
}

/**
* @deprecated
*/
public function testGenerateSignRequests(): void
{
$registrations = [
Expand Down