khaqan/php-jwt

Independant php calss module for standard JWT

v1.0 2020-12-21 09:42 UTC

This package is auto-updated.

Last update: 2024-09-29 05:49:43 UTC


README

PHP implementation of Json Web Token based on RFC standards.

Supported Algorithms

  1. HS256 (Default)
  2. HS384
  3. HS512

validation responses

While validating a Json Web Token with secret key then returned response might be one of these

{"message": "", "status": 200, "result": "data"}

{"message": "no authorization token", "status": 401}

{"message": "invalid token", "status": 401}

{"message": "token expired", "status": 401}

{"message": "unauthorized request", "status": 401}

exp check: enabled