OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
test
/
performance
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:18 AM
rwxr-xr-x
📁
Ecdsa
-
08/12/2024 10:35:51 AM
rwxr-xr-x
📁
Hmac
-
08/12/2024 10:35:51 AM
rwxr-xr-x
📄
NoneBench.php
566 bytes
08/12/2024 10:34:18 AM
rw-r--r--
📁
Rsa
-
08/12/2024 10:35:52 AM
rwxr-xr-x
📄
SignerBench.php
1.51 KB
08/12/2024 10:34:18 AM
rw-r--r--
Editing: NoneBench.php
Close
<?php declare(strict_types=1); namespace Lcobucci\JWT; use Lcobucci\JWT\Signer\Key; use Lcobucci\JWT\Signer\Key\InMemory; use Lcobucci\JWT\Signer\None; use PhpBench\Benchmark\Metadata\Annotations\Groups; /** @Groups({"None"}) */ final class NoneBench extends SignerBench { protected function signer(): Signer { return new None(); } protected function signingKey(): Key { return InMemory::empty(); } protected function verificationKey(): Key { return InMemory::empty(); } }