OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:18 AM
rwxr-xr-x
📄
Builder.php
2.06 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
ClaimsFormatter.php
259 bytes
08/12/2024 10:33:26 AM
rw-r--r--
📄
Configuration.php
3.9 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
Decoder.php
631 bytes
08/12/2024 10:33:26 AM
rw-r--r--
📄
Encoder.php
547 bytes
08/12/2024 10:33:27 AM
rw-r--r--
📁
Encoding
-
08/12/2024 10:34:17 AM
rwxr-xr-x
📄
Exception.php
125 bytes
08/12/2024 10:33:27 AM
rw-r--r--
📄
Parser.php
598 bytes
08/12/2024 10:33:27 AM
rw-r--r--
📁
Signer
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
Signer.php
1022 bytes
08/12/2024 10:33:27 AM
rw-r--r--
📁
Token
-
08/12/2024 10:34:17 AM
rwxr-xr-x
📄
Token.php
1.3 KB
08/12/2024 10:33:27 AM
rw-r--r--
📁
Validation
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
Validator.php
533 bytes
08/12/2024 10:33:27 AM
rw-r--r--
Editing: Token.php
Close
<?php declare(strict_types=1); namespace Lcobucci\JWT; use DateTimeInterface; use Lcobucci\JWT\Token\DataSet; interface Token { /** * Returns the token headers */ public function headers(): DataSet; /** * Returns if the token is allowed to be used by the audience */ public function isPermittedFor(string $audience): bool; /** * Returns if the token has the given id */ public function isIdentifiedBy(string $id): bool; /** * Returns if the token has the given subject */ public function isRelatedTo(string $subject): bool; /** * Returns if the token was issued by any of given issuers */ public function hasBeenIssuedBy(string ...$issuers): bool; /** * Returns if the token was issued before of given time */ public function hasBeenIssuedBefore(DateTimeInterface $now): bool; /** * Returns if the token minimum time is before than given time */ public function isMinimumTimeBefore(DateTimeInterface $now): bool; /** * Returns if the token is expired */ public function isExpired(DateTimeInterface $now): bool; /** * Returns an encoded representation of the token */ public function toString(): string; }