OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
src
/
Signer
/
Ecdsa
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
ConversionFailed.php
632 bytes
08/12/2024 10:35:50 AM
rw-r--r--
📄
MultibyteStringConverter.php
4.73 KB
08/12/2024 10:35:50 AM
rw-r--r--
📄
Sha256.php
430 bytes
08/12/2024 10:35:50 AM
rw-r--r--
📄
Sha384.php
430 bytes
08/12/2024 10:35:50 AM
rw-r--r--
📄
Sha512.php
431 bytes
08/12/2024 10:35:50 AM
rw-r--r--
📄
SignatureConverter.php
1.04 KB
08/12/2024 10:35:50 AM
rw-r--r--
Editing: ConversionFailed.php
Close
<?php declare(strict_types=1); namespace Lcobucci\JWT\Signer\Ecdsa; use InvalidArgumentException; use Lcobucci\JWT\Exception; final class ConversionFailed extends InvalidArgumentException implements Exception { public static function invalidLength(): self { return new self('Invalid signature length.'); } public static function incorrectStartSequence(): self { return new self('Invalid data. Should start with a sequence.'); } public static function integerExpected(): self { return new self('Invalid data. Should contain an integer.'); } }