maatify / jwt
maatify.com
1.0.2
2024-01-13 10:32 UTC
Requires
- firebase/php-jwt: ^6.10
- maatify/functions: ^1.2
- maatify/json: ^1.1
- maatify/logger: ^1.1
README
JWT
maatify.dev JWT handler, known by our team
Installation
composer require maatify/jwt
To Use
Create Class Extend JWTAssist
<?php use JwtHandler\JWTAssist; class JwtCheck extends JWTAssist { protected string $ssl_secret = '6GSSLr%70SecrectH1IAbtestzoHB0!0bI'; protected string $ssl_key = 'M7u9SSLR3&0testwXRAIbKEYGoYJjK'; protected string $ssl_cipher_algo = 'AES-128-ECB'; public function Hash(): string { return $this->Encode('www.maatify.dev', 60, ['array of data']); } public function Dehash(string $jwt_token): \stdClass { return $this->Decode($jwt_token); } }