Hackfut Security File Manager
Current Path:
/home/u126195517/domains/rdnirjaldhulai.com/vendor/lcobucci/jwt/src
home
/
u126195517
/
domains
/
rdnirjaldhulai.com
/
vendor
/
lcobucci
/
jwt
/
src
/
📁
..
📄
Builder.php
(2.2 KB)
📄
ClaimsFormatter.php
(265 B)
📄
Configuration.php
(5.68 KB)
📄
Decoder.php
(705 B)
📄
Encoder.php
(612 B)
📁
Encoding
📄
Exception.php
(115 B)
📄
JwtFacade.php
(1.88 KB)
📄
Parser.php
(621 B)
📁
Signer
📄
Signer.php
(1.17 KB)
📄
SodiumBase64Polyfill.php
(2.86 KB)
📁
Token
📄
Token.php
(1.47 KB)
📄
UnencryptedToken.php
(480 B)
📁
Validation
📄
Validator.php
(513 B)
Editing: Decoder.php
<?php declare(strict_types=1); namespace Lcobucci\JWT; use Lcobucci\JWT\Encoding\CannotDecodeContent; interface Decoder { /** * Decodes from JSON, validating the errors * * @param non-empty-string $json * * @throws CannotDecodeContent When something goes wrong while decoding. */ public function jsonDecode(string $json): mixed; /** * Decodes from Base64URL * * @link http://tools.ietf.org/html/rfc4648#section-5 * * @return ($data is non-empty-string ? non-empty-string : string) * * @throws CannotDecodeContent When something goes wrong while decoding. */ public function base64UrlDecode(string $data): string; }
Upload File
Create Folder