OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
src
/
Signer
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:17 AM
rwxr-xr-x
📄
CannotSignPayload.php
387 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📁
Ecdsa
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
Ecdsa.php
1.37 KB
08/12/2024 10:34:17 AM
rw-r--r--
📁
Hmac
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
Hmac.php
581 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
InvalidKeyProvided.php
532 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📁
Key
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
Key.php
176 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
None.php
620 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
OpenSSL.php
3.54 KB
08/12/2024 10:34:17 AM
rw-r--r--
📁
Rsa
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
Rsa.php
589 bytes
08/12/2024 10:34:17 AM
rw-r--r--
Editing: InvalidKeyProvided.php
Close
<?php declare(strict_types=1); namespace Lcobucci\JWT\Signer; use InvalidArgumentException; use Lcobucci\JWT\Exception; final class InvalidKeyProvided extends InvalidArgumentException implements Exception { public static function cannotBeParsed(string $details): self { return new self('It was not possible to parse your key, reason: ' . $details); } public static function incompatibleKey(): self { return new self('This key is not compatible with this signer'); } }